-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
59 lines (41 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="contact.css">
<link rel="icon" type="image/x-icon" href="svgs/AKlogo.svg">
<title>Contact</title>
</head>
<body>
<div class="contact">
<div class="contactHeader">
<h1>Contact</h1>
</div>
<div class="contactPart">
<div class="socialLinks">
<h2>Social Links</h2>
</div>
<div class="contactFirstPart">
<a href="https://github.com/AKKI765/"><img src="socialSVG/github.svg" alt="github" class="socialSVG"></a>
<a href="https://www.linkedin.com/in/atul-kumar-047322268/"><img src="socialSVG/linkedIn.svg" alt="linkedIn" class="socialSVG"></a>
<a href="https://www.instagram.com/accounts/login/?hl=en"><img src="socialSVG/instagram.svg" alt="instagram" class="socialSVG"></a>
<a href="https://x.com/?lang=en"><img src="socialSVG/twitter.svg" alt="twitter" class="socialSVG"></a>
<a href="https://www.facebook.com/"><img src="socialSVG/facebook.svg" alt="facebook" class="socialSVG"></a>
</div>
<div class="contactSecondPart">
<form id="contactForm" action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Name: <input type="text" class="name"></label>
<label>Subject: <textarea name="subject" id="subject" required></textarea></label>
<label>Email: <input type="email" class="email" required></label>
<label>Message:<textarea name="Message" id="message" required></textarea></label>
<button type="submit">Send</button>
</form>
</div>
</div>
<div class="contactFooter">
<p>© Atul Kumar</p>
</div>
</div>
</body>
</html>