-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact_us.html
More file actions
181 lines (124 loc) · 6.75 KB
/
contact_us.html
File metadata and controls
181 lines (124 loc) · 6.75 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Div Programming</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous" />
<link rel="icon" type="image/x-icon" href="/images/logo1.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Start header -->
<!-- Start Navbar -->
<div id="header"></div>
<!-- End Navbar -->
<!-- End header -->
<!-- Start Page name -->
<div class="bg-light p-5 rounded-lg m-3">
<div class="container">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Contact us</li>
</ol>
</nav>
<h1 class="display-4">Contact us</h1>
<p class="lead">This is a simple hero unit, a simple jumbotron-style component for calling extra attention
to
featured content or information.</p>
</div>
</div>
<!-- End Page name -->
<!-- Start Contact US -->
<div class="contact">
<div class="container">
<div class="row">
<div class="col-sm">
<div class="card">
<div class="card-body">
<form class="row g-3">
<div class="col-md-6">
<label for="inputEmail4" class="form-label">First Name</label>
<input type="text" class="form-control" id="inputEmail4">
</div>
<div class="col-md-6">
<label for="inputPassword4" class="form-label">Last Name</label>
<input type="text" class="form-control" id="inputPassword4">
</div>
<div class="col-md-6">
<label for="inputEmail4" class="form-label">Email</label>
<input type="email" class="form-control" id="inputEmail4">
</div>
<div class="col-md-6">
<label for="inputPassword4" class="form-label">Phone Number</label>
<input type="number" class="form-control" id="inputPassword4">
</div>
<div class="col-12">
<label for="inputAddress" class="form-label">Address</label>
<input type="text" class="form-control" id="inputAddress"
placeholder="1234 Main St">
</div>
<div class="col-12">
<label for="inputAddress2" class="form-label">Address 2</label>
<input type="text" class="form-control" id="inputAddress2"
placeholder="Apartment, studio, or floor">
</div>
<div class="col-md-6">
<label for="inputState" class="form-label">Contery</label>
<select id="inputState" class="form-select">
<option selected>Choose...</option>
<option>Yemen</option>
<option>Oman</option>
<option>saudi</option>
</select>
</div>
<div class="col-md-6">
<label for="inputState" class="form-label">City</label>
<select id="inputState" class="form-select">
<option selected>Choose...</option>
<option>Sana'a</option>
<option>Adan</option>
<option>Taiz</option>
<option>Read</option>
<option>Makah</option>
<option>Al-Madina</option>
<option>masgd</option>
<option>masgd</option>
<option>masgd</option>
</select>
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Example textarea</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="8"></textarea>
</div>
<!-- <div class="col-12"> -->
<button type="submit" class="btn btn-primary">Send</button>
<!-- </div> -->
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Contact US -->
<!-- Start Footer -->
<div id="footer"></div>
<!-- End Footer -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(function(){
$("#header").load("header.html");
// $("#navbar").load("navbar.html");
$("#footer").load("footer.html");
});
</script>
</body>
</html>