-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
102 lines (96 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hithesh Shekar || Contact</title>
<link
rel="stylesheet"
href="./fontawesome-free-5.12.1-web/css/all.min.css"
/>
<!-- css -->
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<!-- navbar -->
<nav class="nav" id="nav">
<div class="nav-center">
<!-- nav header -->
<div class="nav-header">
<span class="nav-logo">Hithesh Shekar</span>
<button class="nav-btn" id="nav-btn">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- nav links -->
<ul class="nav-links">
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="projects.html">projects</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</div>
</nav>
<!-- end of navbar -->
<!-- sidebar -->
<aside class="sidebar" id="sidebar">
<div>
<button id="close-btn" class="close-btn">
<i class="fas fa-times"></i>
</button>
<ul class="sidebar-links">
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="Research.html">research</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
<ul class="social-icons">
<li>
<a href="https://github.com/HitheshShekar" class="social-icon">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/hithesh-shekar-ab7b22151/" class="social-icon">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="./resume/Hithesh_Shekar_resume.pdf" class="social-icon" download></a>
<i class="fas fa-file-pdf"></i>
</a>
</li>
</ul>
</div>
</aside>
<!-- end of sidebar -->
<!-- ############## -->
<!-- ############## -->
<!-- ############## -->
<!-- ############## -->
<section class="section single-page">
<!-- section title -->
<div class="section-title">
<h1>contact</h1>
<div class="underline"></div>
</div>
<!--end of section title -->
<div id="error_message"></div>
<form id="form" name="contact" method="POST" data-netlify="true" onsubmit="return validate()">
<input name="name" id="name" type="text" class="feedback-input" placeholder="Name" />
<input name="email" id="email" type="text" class="feedback-input" placeholder="Email" />
<textarea name="text" id="message" class="feedback-input" placeholder="Message"></textarea>
<input type="submit" class="btn" value="SUBMIT"/>
</form>
</section>
<!-- ############## -->
<!-- ############## -->
<!-- ############## -->
<!-- ############## -->
<!-- footer -->
<footer class="footer">
<p>© <span id="date"></span> Hithesh Shekar. All rights reserved.</p>
</footer>
<script src="./js/app.js"></script>
</body>
</html>