-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
94 lines (84 loc) · 3.4 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Contact us</title>
<link rel="stylesheet" href="stylesheets/style.css" />
<link rel="icon" href="images/favicon.ico" />
</head>
<body>
<div class="display-left">
<a href="index.html">
<img class="logo" src="images/logo.png" alt="Logo" />
</a>
</div>
<div class="display-right">
<nav>
<a class="link" href="index.html">HOME</a>
<a class="link" href="https://7ragnarok7.github.io/Dot.Chat/">ABOUT</a>
<a class="link" href="contact.html">CONTACT US</a>
</nav>
</div>
<div class="head">
We would love to hear from you.<br /> Get in touch with us in the below handlers.
</div>
<div class="contact">
<p style="color:chartreuse;">Anurag Mondal </p>
<a href="https://github.com/7Ragnarok7">
<img class="icon" src="images/github.png" alt="github icon" />
</a>
<a href="https://www.facebook.com/7Ragnarok7">
<img class="icon" src="images/facebook.png" alt="facebook.com" />
</a>
<a href="mailto:[email protected]">
<img class="icon" src="images/gmail.png" alt="email icon" />
</a>
<a href="https://www.linkedin.com/in/7ragnarok7">
<img class="icon" src="images/linkedin.png" alt="linkedin icon" />
</a>
<a href="https://www.youtube.com/channel/UCaiqoWkjkUYUGykB2qIkmpw">
<img class="icon" src="images/youtube.png" alt="youtube icon">
</a>
</div>
<div class="contact">
<p style="color:chartreuse;">Liza Rozario </p>
<a href="https://github.com/BlazinGirl">
<img class="icon" src="images/github.png" alt="github icon" />
</a>
<a href="https://www.facebook.com/7BlazinGirl7">
<img class="icon" src="images/facebook.png" alt="facebook.com" />
</a>
<a href="mailto:[email protected]">
<img class="icon" src="images/gmail.png" alt="email icon" />
</a>
<a href="https://www.linkedin.com/in/blazingirl">
<img class="icon" src="images/linkedin.png" alt="linkedin icon" />
</a>
</div>
<div class="contact">
<p style="color:chartreuse;">Subhra Patra </p>
<a href="https://github.com/subhrapatra">
<img class="icon" src="images/github.png" alt="github icon" />
</a>
<a href="https://www.facebook.com/subhra.patra.942">
<img class="icon" src="images/facebook.png" alt="facebook.com" />
</a>
<a href="mailto:[email protected]">
<img class="icon" src="images/gmail.png" alt="email icon" />
</a>
</div>
<div class="newsletter">
<p style="color:palevioletred">
Subscribe to our newsletter for further updates.
</p>
<form autocomplete="on" method="POST" action="success.html">
<label for="name">Name:</label><br />
<input type="text" id="news" name="name" placeholder="Full Name" required /><br />
<label for="email">Email:</label><br />
<input type="email" id="news" name="email" placeholder="[email protected]" required />
<button type="submit" class="signup"
style="position: relative; bottom: 33px; left: 17px;">Subscribe</button>
</form>
</div>
</body>
</html>