-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
116 lines (98 loc) · 4.55 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=0"" >
<title>Christian Medallada</title>
<!----------------------------FAVICON----------------------->
<link rel="shortcut icon" href="/images/CM Logo.jpg" type="image/x-icon" />
<!----------------------------CSS ----------------------->
<link rel="stylesheet" href="/assets/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<!---------------------NAVIGATION BAR ----------------------->
<section>
<input type="checkbox" id="check">
<header>
</div>
<h2><a href="index.html" class="logo">Christian</a></h2>
<div class="navigation">
<a href="about.html">About</a>
<a href="projects.html">Project</a>
<a href="experience.html">Experience</a>
<a href="contact.html">Contact</a>
</div>
<label for="check">
<i class="fas fa-bars menu-btn"></i>
<i class="fas fa-times close-btn"></i>
</label>
</header>
<h4><a href="index.html" class="Subtitle">Aspiring Software Engineer</a></h4>
<!---------------------CONTACTS ----------------------->
<div class="contact-section">
<h1>Contact</h1>
</div>
<div class="left4">
<h4>Get in touch</h4>
<p>For Any Sort Of Help Or Inquiries, Feel Free To Send Me An Email And I'll Get Back To You Soon.</p>
<div>
<span class="icon"><i class="fas fa-user"></i></span>
<span class="contact-content">
<h3>Name</h3>
<span>Christian Medallada</span>
</span>
</div>
<div>
<span class="icon"><i class="fas fa-map-marker-alt"></i></span>
<span class="contact-content">
<h3>Address</h3>
<span>Makati, Philippines - 1233</span>
</span>
</div>
<div>
<span class="icon"><i class="fas fa-envelope"></i></span>
<span class="contact-content">
<h3>Email</h3>
<span>medalladachris100@gmail.com</span>
</span>
</div>
</div>
<!---------------------MESSAGE ME----------------------->
<div class="right5">
<form action="https://formsubmit.co/medalladachris100@gmail.com" method="POST" autocomplete="off"/>
<h2>Message Me</h2>
<div>
<input type="hidden" name="_next" value="https://tianmeds.me/thank.html">
<input type="hidden" name="_captcha" value="false">
<input type="text" id="name" name="name" placeholder="Your Name" required />
<input type="email" id="email" name="email" placeholder="Your Email Address" required />
</div>
<textarea type="message" name="message" id="message" cols="30" rows="10" placeholder="Your message"></textarea>
<div class="contacts">
<button onclick="openMessage() "type="submit" id="send-btn" class="send">
<p id="send-text">Send message</p>
<div class="check-boxs">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
<path fill="transparent" d="M14.1 27.2l7.1 7.2 16.7-16.8" />
</svg>
</div>
</button>
</div>
</div>
</form>
</div>
<!---------------------FOOTER----------------------->
<div class="contact-footer">
<a href="https://www.facebook.com/Cmedsss" target="_blank" class="social-btn"><i class=" fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/tiaanmeds/" target="_blank" class="social-btn"><i class=" fab fa-instagram"></i></a>
<a href="https://twitter.com/TianMeds" target="_blank" class="social-btn"><i class=" fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/tianmeds/" target="_blank" class="social-btn"><i class=" fab fa-linkedin-in"></i></a>
<a href="https://github.com/TianMeds" target="_blank" class="social-btn"><i class=" fab fa-github"></i></a>
<p>© 2022 Christian Medallada. All rights reserved</p>
</div>
</div>
</section>
<script src="/assets/app.js"> </script>
</body>
</html>