-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
171 lines (164 loc) · 5.15 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Us</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<header>
<nav class="navbar bg-li8 navbar-expand-lg bgp rounded-2">
<div class="container-fluid">
<a class="navbar-brand fw-bolder text-light" href="./index.html">
Word Counter App
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarText"
aria-controls="navbarText"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item menu-item">
<a
class="nav-link active text-light"
aria-current="page"
href="index.html"
>
Home
</a>
</li>
<li class="nav-item menu-item">
<a class="nav-link text-light" href="./contact.html">
Contact us
</a>
</li>
<li class="nav-item menu-item">
<a class="nav-link text-light" href="./about.html">About us</a>
</li>
</ul>
<span class="navbar-text text-light">
Beyound your imaginations
</span>
</div>
</div>
</nav>
</header>
<body>
<h3 class="container mt-5 fw-bolder">Contact us</h3>
<h4 class="text-center">
Get in Touch!
</h4>
<p class="text text-center">
Let us know how we can help and set up a time to chat with us!
</p>
<div class="container container-form mb-4">
<form action="#">
<label for="fname">First Name</label>
<input
type="text"
id="fname"
name="firstname"
placeholder="Your name.."
/>
<label for="lname">Last Name</label>
<input
type="text"
id="lname"
name="lastname"
placeholder="Your last name.."
/>
<label for="subject">Subject</label>
<textarea
id="subject"
name="subject"
placeholder="Write something.."
style="height: 200px;"
></textarea>
<input type="submit" value="Submit" />
</form>
</div>
</body>
<footer>
<div class="conatner-fluid bg-li82 p-3">
<div class="container footer p-3">
<div class="container p-4 col-4">
<h5 class="text-light fw-bold pb-2">
Pages
</h5>
<li class="menu-footer">
<a class="text-light" href="./index.html">Word Counter</a>
</li>
<li class="menu-footer">
<a class="text-light" href="./about.html">About us</a>
</li>
<li class="menu-footer">
<a class="text-light" href="./contact.html">Contact us</a>
</li>
</div>
<div class="container p-4 col-4">
<h5 class="text-light fw-bold pb-2">
Highlights
</h5>
<li class="menu-footer">
<a class="text-light" href="./Terms.html">Terms & Conditions</a>
</li>
<li class="menu-footer">
<a class="text-light" href="./privacy.html">Privacy Policy</a>
</li>
</div>
<div class="container p-4 col-4">
<h5 class="text-light fw-bold pb-2">
Social
</h5>
<li class="menu-footer">
<a
class="nav-link text-light social"
href="https://www.facebook.com/ahmedx182/"
>
<i class="fa fa-facebook-square"></i>
Facebook
</a>
</li>
<li class="menu-footer">
<a
class="nav-link text-light social"
href="https://instagram.com/ahmedz182"
>
<i class="fa fa-instagram"></i>
Instagram
</a>
</li>
</div>
</div>
<div class="bg-li82 p-1 text-center">
<p class="bg-li82 text-light text-center">
© 2023 All right reseverd By
<a class="text-light social" href="index.html">Learn Hub Studio</a>
</p>
</div>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"
></script>
</html>