-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
101 lines (90 loc) · 4.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Work+Sans:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/html5reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/style-tablet.css">
<link rel="stylesheet" type="text/css" href="css/style-laptop.css">
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link rel="stylesheet" type="text/css" href="css/style-reduced-motion.css">
<title>Contact | Anuya Karnik</title>
<!-- Using Chevrons and Icons from Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7ZYPYV8TTM"></script>
<script src="scripts/gtag.js"></script>
</head>
<body>
<div class="skip"><a href="#main">Skip to Main Content</a></div>
<header>
<div class="menu-title"><a href="index.html">Anuya Karnik</a></div>
<nav class="menu-links">
<a href="index.html">Portfolio</a>
<a href="about.html">About</a>
<!-- <a class="current" href="contact.html">Contact</a> -->
<!-- <a href="gallery.html">Art Gallery</a> -->
<a target="blank"
href="https://drive.google.com/file/d/1YE9G5xVTOCrCiCcP3hGBNKOTjLZOOnqK/view?usp=sharing">Resume
<i class="fas fa-external-link-alt"></i>
</a>
</nav>
</header>
<main id="main">
<div class="pr-a color-b">
<div class="pr-text">
<h1>Stay In Touch!</h1>
<p> Want to collaborate for a project? Or just want to connect and say hi? Send me a message using the
form below! I would love to connect!</p>
</div>
</div>
<!-- jsmodel="TOfxwf Q91hve" -->
<div class="contact-form">
<form
action="https://docs.google.com/forms/u/0/d/e/1FAIpQLSeAVuCSB_OfBU0d5UxofPIOnmWt7yolUL6g4ecgzGYD17GVeA/formResponse"
target="_self" method="POST">
<label for="fname">First Name</label>
<input type="text" id="fname" name="entry.976217379" placeholder="First Name" required>
<label for="lname">Last Name</label>
<input type="text" id="lname" name="entry.13094099" placeholder="Last Name" required>
<label for="email">Email</label>
<input type="email" id="email" name="entry.2130210990" placeholder="Email" required>
<label for="message">Message</label>
<textarea id="message" name="entry.685039705" placeholder="Your Message" required></textarea>
<input id="submit-button" type="submit" value="Submit">
</form>
</div>
</main>
<footer>
<p>Thank you so much for checking out my portfolio!</p>
<div class="social-icons">
<a
aria-label="Link to LinkedIn"
target="blank"
href="https://www.linkedin.com/in/anuya-karnik/"
><i class="fab fa-linkedin"></i
></a>
<a
aria-label="Link to Email"
target="blank"
href="mailto:[email protected]"
><i class="fas fa-envelope"></i
></a>
<a
aria-label="Link to GitHub"
target="blank"
href="https://github.com/anuya-karnik"
><i class="fab fa-github"></i
></a>
</div>
<p>© Anuya Karnik 2024</p>
</footer>
</body>
</html>