-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
116 lines (97 loc) · 5.18 KB
/
Copy pathcontact.html
File metadata and controls
116 lines (97 loc) · 5.18 KB
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css">
<title>Utkarsh's Bootstrap Blog</title>
<link rel="icon" href="images/logo.jpg" type="image/icon">
</head>
<body style="background-color: rgb(145, 229, 159);">
<nav class="navbar navbar-expand-lg sticky-top navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="https://devutkarshdixit.github.io/bootstrap-blog/">Utkarsh's Bootstrap Blog</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 me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="https://devutkarshdixit.github.io/bootstrap-blog/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Topics
</a>
<ul class="dropdown-menu dropdown-menu-dark" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="websites.html">Websites-Static</a></li>
<li><a class="dropdown-item" href="websites-d.html">Websites-Dynamic</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="games.html">Games</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link active" href="contact.html">Contact
Me</a>
</li>
</ul>
<form class="d-flex">
<a href="https://devutkarshdixit.github.io/utkarshdixit/" target="_blank"
class="btn btn-outline-info">
Created by Utkarsh Dixit</a>
</form>
</div>
</div>
</nav>
<div class="container mt-4">
<form action="https://formsubmit.co/utkarshdixit2021@gmail.com" method="POST">
<div class="mb-3">
<label for="InputName" class="form-label">Name</label>
<input type="text" class="form-control" name="User Name" required>
</div>
<div class="mb-3">
<label for="InputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" placeholder="yourname@gmail.com" name="Email ID" id="InputEmail1"
aria-describedby="emailHelp" required>
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="InputComment" class="form-label">Comment/Contact Query</label>
<textarea style="resize: none;" class="form-control" name="Comment" id="InputComment" required></textarea>
</div>
<button type="submit" class="btn btn-info">
Submit Your Comment
</button>
</form>
</div>
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
Created By Utkarsh Dixit
<ul>
<a href="https://wa.me/917735886881" class="bi bi-whatsapp text-success" target="_blank"
style="padding-right: 25px;"></a>
<a href="https://github.com/devutkarshdixit" class="bi bi-github text-black" target="_blank"
style="padding-right: 25px;"></a>
<a href="https://www.linkedin.com/in/utkarsh--dixit" class="bi bi-linkedin" target="_blank"
style="padding-right: 25px;"></a>
</ul>
<a href="#top" class="btn btn-outline-primary">Back To Top</a>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
</body>
</html>