-
Notifications
You must be signed in to change notification settings - Fork 2
/
contactus .html
67 lines (61 loc) · 3.25 KB
/
contactus .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
<!DOCTYPE html>
<html>
<head> <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=for, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<link rel="stylesheet" href="prifile.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="/css/prifile.css">
<title>Contact Us</title>
</head>
<body class="contactusbody">
<section class="header">
<nav >
<a href="index.html"><img class="logo" src="image/LOGO1.png" ></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()" ></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="">About Us</a></li>
<li><a href="appointment.html">Book Appointment</a></li>
<li><a href="bot.html">Chat with Us</a></li>
<li><a href="contactus .html">Contact Us</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="profile.html">Profile</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()" ></i>
</nav>
</section>
<h2 class="contactus">Contact Us</h2>
<p>Please use the form below to contact us with any questions or concerns: </p>
<form class="contactform">
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Name</label>
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text"></div>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text"></div>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Contact Number</label>
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text"></div>
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Message</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<!-- <div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div> -->
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</body>
</html>