-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathContact.html
More file actions
91 lines (64 loc) · 2.62 KB
/
Contact.html
File metadata and controls
91 lines (64 loc) · 2.62 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="Contact.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<h2>CONNECT WITH US</h2>
</header>
<ul>
<li><a href="index.html" class="mI">Home</a></li>
<li><a href="About.html" class="mI">Our Story</a></li>
<li><a href="Projects.html" class="mI">Our Creations</a></li>
<li><a href="Team.html" class="mI">Our Fam</a></li>
<li><a href="Contact.html" class="mI active1">Contact</a></li>
</ul>
<br>
<br>
<br>
<div class="container">
<table>
<br><br>
<caption><h1>CONNECT WITH US</h1></caption>
<tr>
<td><div class="sm1"><a href="mailto:realcodevengers@gmail.com" class="mail" ><img class="mail" src="mail.png" alt=""></a></div></td>
<td style="text-align:center;font-size:20px;">Mail us @ realcodevengers@gmail.com</td>
</tr>
<tr>
<td> <div class="sm2"><a href="https://www.instagram.com/realcodevengers/" class="insta" ><img class="insta" src="insta.png" alt=""></a></div> </td>
<td style="text-align:center;font-size:20px;">Follow us on insta</td>
</tr>
<tr>
<td><div class="sm3"><a href="https://github.com/realcodevengers" class="git"><img class="git" src="github.png" alt=""></a></div></td>
<td style="text-align:center;font-size:20px;">Check out our projects</td>
</tr>
<tr>
<td><div class="sm4"><a href="https://www.youtube.com/channel/UCqO_zNx829e6soWLzinFkcA" class="yt"><img class="yt" src="yt.png" alt=""></a></div></td>
<td style="text-align:center;font-size:20px;">YouTube</td>
</tr>
<tr>
<td><div class="sm5"><a href="https://twitter.com/realcodevengers" class="twitter"><img class="twitter" src="twitter.png" alt=""></a></div></td>
<td style="text-align:center;font-size:20px;">Twitter</td>
</tr>
</table>
</div>
<div class="contact-section" id="frm">
<h1>Contact Us</h1>
<form class="contact-form" action="https://formspree.io/xjvoqlnb" method="POST">
<input type="text" class="contact-form-text" placeholder="Your name" name="Name" >
<input type="email" class="contact-form-text" placeholder="Your email" name = "replyTo" >
<input type="text" class="contact-form-text" placeholder="Your phone" name = "contactNo" >
<textarea class="contact-form-text" placeholder="Your message" name="message"></textarea>
<input type="submit" class="contact-form-btn" value="Send">
</form>
</div>
</div>
</body>
<footer>
<h5>CodeVengers ©2020</h5>
</footer>
</html>