-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
128 lines (121 loc) · 6.38 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Satodhru Nondon, Developer, satodhrunondon@gmail.com">
<meta name="keywords" content="Satodhru Nondon, Front End Developer, satodhrunondon@gmail.com">
<meta name="developer" content="Satodhru Nondon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Satodhru || Contact</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/plugins/css/bootstrap.min.css">
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Baloo+2:wght@600;700&family=Montserrat&display=swap"
rel="stylesheet">
<!-- Fontawesome -->
<link rel="stylesheet" href="assets/css/all.css">
<!-- Hover CSS -->
<link rel="stylesheet" href="assets/plugins/css/hover.css">
<!-- AOS -->
<link rel="stylesheet" href="assets/plugins/css/aos.css">
<!-- Owl CSS -->
<link rel="stylesheet" href="assets/plugins/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/plugins/css/owl.theme.default.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header id="header-wrapper">
<div class="header-wrap">
<div class="container">
<!--
-- ─── NAVBAR ─────────────────────────────────────────────────────────────────────
-->
<div class="navbar-wrapper">
<nav class="navbar navbar-expand-lg navbar-light navbar-custom">
<div class="container-fluid">
<a class="navbar-brand nav-logo" href="./index.html">S</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link " aria-current="page" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link " href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link " href="./project.html">Project</a>
</li>
<li class="nav-item">
<a class="nav-link " href="./blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link " href="./contact.html">Contact</a>
</li>
<li class="nav-item">
<button class="nav-link btn custom-btn1"><a href="assets/resume/Satodhru Das Resume 2021.pdf" download>Resume</a></button>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!--
-- ─── SHOWCASE ─────────────────────────────────────────────────────────────────────
-->
<div class="contact-content-wrap">
<div class="contact-form">
<h2>Get In Touch</h2>
<form action="https://formspree.io/f/xrgreozb" method="POST">
<div class="mb-3">
<input type="name" class="form-control" placeholder="Your Name">
</div>
<div class="mb-3">
<input type="email" class="form-control" placeholder="Your Email" aria-describedby="emailHelp">
</div>
<div class="mb-3">
<textarea name=""cols="53" rows="3" placeholder="Your Description"></textarea>
</div>
<button type="submit" class="btn custom-btn1">Submit</button>
</form><br>
<p>Sending to <a href="mailto:satodhrunondon@gmail.com">satodhrunondon@gmail.com</a></p>
</div>
</div>
</div>
</div>
</header>
<footer id="footer-wrapper">
<div class="footer-wrap">
<div class="container">
<h6>Designed & Built by <a href="https://github.com/shoto2020">Satodhru Das</a></h6>
<ul>
<li>
<a href="https://www.linkedin.com/in/satodhru-das-8b6781195/"><i class="fab fa-linkedin"></i></a>
</li>
<li><a href="https://github.com/shoto2020"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.facebook.com/satodhru/"><i class="fab fa-facebook"></i></a></li>
</ul>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="assets/plugins/js/jquery-3.4.0.min.js"></script>
<!-- Bootstrap -->
<script src="assets/plugins/js/bootstrap.bundle.min.js"></script>
<!-- Fontawesome -->
<script src="assets/plugins/js/all.js"></script>
<!-- Typeit Js -->
<script src="assets/plugins/js/typeit.min.js"></script>
<!-- AOS -->
<script src="assets/plugins/js/aos.js"></script>
<!-- Owl JS -->
<script src="assets/plugins/js/owl.carousel.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/custom.js"></script>
</body>
</html>