-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
196 lines (185 loc) · 10 KB
/
contact.html
File metadata and controls
196 lines (185 loc) · 10 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iCoder - Contact Us</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">iCoder</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" href="index.html">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="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">Topics</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="webdev.html">Web Development</a></li>
<li><a class="dropdown-item" href="datasci.html">Data Science</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="write.html">Write For Us</a></li>
</ul>
</li>
<li class="nav-item"><a class="nav-link active" href="contact.html">Contact Us</a></li>
</ul>
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3" role="search">
<input type="search" class="form-control form-control-dark" placeholder="Search..."
aria-label="Search">
</form>
<div class="text-end">
<button type="button" class="btn btn-outline-light me-2" data-bs-toggle="modal"
data-bs-target="#loginModal">Login</button>
<button type="button" class="btn btn-warning" data-bs-toggle="modal"
data-bs-target="#signupModal">Sign-up</button>
</div>
</div>
</div>
</nav>
<!-- Login Modal -->
<div class="modal fade" id="loginModal" tabindex="-1" aria-labelledby="loginModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="loginModalLabel">Login to iCoder</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1"
aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Remember Me</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
<!-- Sign-Up Modal -->
<div class="modal fade" id="signupModal" tabindex="-1" aria-labelledby="signupModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="signupModalLabel">Create an iCoder Account</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1"
aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Confirm Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<button type="submit" class="btn btn-primary">Create Account</button>
</form>
</div>
</div>
</div>
</div>
<div class="container my-5">
<h1 class="fw-semibold text-center mb-4">Get In Touch</h1>
<p class="lead">Do you have anything in your mind to let us know? Kindly don't delay to connect to us by means
of our contact
form</p>
<div class="mb-3" style="font-size: 18px;">
<label for="exampleFormControlInput1" class="form-label">Name</label>
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="Your Name">
</div>
<div class="mb-3" style="font-size: 18px;">
<label for="exampleFormControlInput2" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput2" placeholder="name@example.com">
</div>
<div class="mb-3" style="font-size: 18px;">
<label for="exampleFormControlTextarea1" class="form-label">Message</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<button type="button" class="btn btn-primary" style="font-size: 18px;">Send Message</button>
</div>
<div class="container marketing">
<!-- Three columns of text below the carousel -->
<div class="row justify-content-around text-center">
<div class="col-lg-4">
<i class="bi bi-geo-alt" style="font-size: 80px;"></i>
<!-- <svg aria-label="Placeholder" class="bd-placeholder-img rounded-circle" height="140"
preserveAspectRatio="xMidYMid slice" role="img" width="140" xmlns="http://www.w3.org/2000/svg"> -->
<h2 class="fw-medium">Address</h2>
<p style="font-size: 18px;">This is address</p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<i class="bi bi-telephone" style="font-size: 80px;"></i>
<h2 class="fw-medium">Contact</h2>
<p style="font-size: 18px;">This is phone number</p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<i class="bi bi-envelope" style="font-size: 80px;"></i>
<h2 class="fw-medium">Email ID</h2>
<p style="font-size: 18px;">This is email</p>
</div><!-- /.col-lg-4 -->
</div><!-- /.row -->
</div>
<!-- Footer -->
<div class="container">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<div class="col-md-4 d-flex align-items-center">
<a class="mb-3 me-2 mb-md-0 text-body-secondary text-decoration-none lh-1" aria-label="Bootstrap">
<img src="favicon.ico" width="24" height="24">
</a>
<span class="mb-3 mb-md-0 text-body-secondary">© 2025 Company, Inc</span>
</div>
<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li class="ms-3">
<a class="text-body-secondary" href="#" aria-label="Instagram">
<i class="bi bi-instagram" width="24" height="24">
<use xlink:href="#instagram"></use>
</i>
</a>
</li>
<li class="ms-3">
<a class="text-body-secondary" href="#" aria-label="Facebook">
<i class="bi bi-facebook" width="24" height="24">
<use xlink:href="#facebook"></use>
</i>
</a>
</li>
</ul>
</footer>
</div>
<!-- Bootstrap JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/js/bootstrap.bundle.min.js"
integrity="sha384-j1CDi7MgGQ12Z7Qab0qlWQ/Qqz24Gc6BM0thvEMVjHnfYGF0rmFCozFSxQBxwHKO"
crossorigin="anonymous"></script>
</body>
</html>