-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
103 lines (99 loc) · 4.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="css files/contact.css">
</head>
<body>
<nav>
<div class="title">
<a href="index.html">abroad</a>
</div>
<div id="two-nav-blocks">
<div class="nav-sections">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="destinations.html">Destination</a></li>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid min-vh-100 d-flex justify-content-center align-items-center" id="container">
<form class="col-md-8 col-lg-6" id="form">
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputName">First Name</label>
<input type="text" class="form-control" id="inputName" placeholder="First Name">
<span class="error-message" id="firstNameError">First Name is Required</span>
</div>
<div class="form-group col-md-6">
<label for="inputLName">Last Name</label>
<input type="text" class="form-control" id="inputLName" placeholder="Last Name">
<span class="error-message" id="lastNameError">Last Name is Required</span>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputEmail4">Email</label>
<input type="email" class="form-control" id="inputEmail4" placeholder="example@gmail.com">
<span class="error-message" id="emailError">Valid email is required</span>
</div>
<div class="form-group col-md-6">
<label for="inputUser">Phone Number</label>
<input type="number" class="form-control" id="inputUser">
<span class="error-message" id="phoneError">Valid phone number is required</span>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-4">
<label for="inputState">Country</label>
<select id="inputState" class="form-control">
<option selected>Choose...</option>
<option>Egypt</option>
<option>UAE</option>
<option>USA</option>
<option>KSA</option>
</select>
<span class="error-message" id="countryError">Country is Required</span>
</div>
<div class="form-group col-md-6">
<label for="inputCity">City</label>
<input type="text" class="form-control" id="inputCity">
</div>
<div class="form-group col-md-2">
<label for="inputZip">Zip</label>
<input type="text" class="form-control" id="inputZip">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-12">
<label for="inputText">Enter Message</label>
<textarea class="form-control" id="inputText" rows="9"></textarea>
<span class="error-message" id="messageError">Message is required</span>
<br>
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
</div>
<script src="JS files\contact.js" ></script>
<footer>
<div class="footer-content">
<p>© 2024 All Rights Reserved.</p>
</div>
</footer>
</body>
</html>