-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
113 lines (100 loc) · 5.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
104
105
106
107
108
109
110
111
112
113
<!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>Yummy Best</title>
<link rel="icon" href="assets/images/logo.png">
<link rel="stylesheet" href="css/all.min.css"> <!-- FontAwesome CSS-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/sections/nav_style.css">
<link rel="stylesheet" href="css/sections/contact_style.css">
<link rel="stylesheet" href="css/shared_style.css">
<script src="js/packages/bootstrap.bundle.min.js" defer></script>
<script src="js/packages/jquery-3.6.1.js" defer></script>
<script src="js/packages/jquery-ui.min.js" defer></script>
<script src="js/sideNavBar.js" defer></script>
<script type="module" src="js/contact.js" defer></script>
</head>
<body>
<!-- Side Navbar -->
<nav class="vh-100 d-flex ">
<div class="links p-4 d-flex flex-column justify-content-between">
<ul class="list-unstyled">
<li class="mb-4"><a class="links-item" href="javascript:void(0)">Search</a></li>
<li class="mb-4"><a class="links-item" href="categories.html">Categories</a></li>
<li class="mb-4"><a class="links-item" href="area.html">Area</a></li>
<li class="mb-4"><a class="links-item" href="ingredients.html">Ingredients</a></li>
<li class="mb-4"><a class="links-item" href="contact.html">Contact Us</a></li>
</ul>
<div id="nav-footer">
<div class="d-flex">
<a href="https://github.com/KareemE125" target="_blank"><div><i class="mx-1 fa-brands fa-github"></i></div></a>
<a href="https://www.linkedin.com/in/kareem-ezzat-7b08871a2/" target="_blank"><div><i class="mx-1 fa-brands fa-linkedin"></i> </div></a>
<a href="https://www.facebook.com/" target="_blank"><div><i class="mx-1 fa-brands fa-facebook"></i> </div></a>
<a href="https://www.instagram.com/kareem_ezzat5/?hl=en" target="_blank"><div><i class="mx-1 fa-brands fa-instagram"></i> </div></a>
</div>
<p>Copyright © 2022 by Kareem Ezzat. <br>All Rights Reserved.</p>
</div>
</div>
<div id="drawer" class="d-flex flex-column justify-content-between align-items-center">
<a href="index.html"><img class="img-fluid" src="assets/images/logo.png" alt="LOGO"></a>
<div id="drawer-icon">
<i id="open-btn" class="fa fa-bars fs-3 mx-2 mb-1"></i>
</div>
<div class="d-flex flex-column">
<a href="https://www.google.com/"><i class="fa fa-globe mb-3"></i></a>
<a href="https://www.themealdb.com/api.php"><i class="fa fa-share-nodes"></i></a>
</div>
</div>
</nav>
<!-- Contact Us -->
<section id="contact">
<div class="container px-1 px-lg-5">
<h2 class="fs-1 text-center mb-5">Contact Us</h2>
<form>
<div class="row g-4 justify-content-center">
<div class="col-lg-6 position-relative">
<i class="fa fa-check bg-green"></i>
<i class="fa fa-close bg-red"></i>
<input class="w-100" type="text" name="name" placeholder="Enter Your Name" required>
<div class="validation-card">"Your name should have at least 3 characters."</div>
</div>
<div class="col-lg-6 position-relative">
<i class="fa fa-check bg-green"></i>
<i class="fa fa-close bg-red"></i>
<input class="w-100" type="email" name="email" placeholder="Enter Your Email" required>
<div class="validation-card">"You should enter a valid email."</div>
</div>
<div class="col-lg-6 position-relative">
<i class="fa fa-check bg-green"></i>
<i class="fa fa-close bg-red"></i>
<input class="w-100" type="tel" name="phone" placeholder="Enter Your Phone" required>
<div class="validation-card">"You should enter a valid number ex:0104 5678 910."</div>
</div>
<div class="col-lg-6 position-relative">
<i class="fa fa-check bg-green"></i>
<i class="fa fa-close bg-red"></i>
<input class="w-100" type="number" name="age" placeholder="Enter Your Age" required>
<div class="validation-card">"You should enter a valid age."</div>
</div>
<div class="col-lg-6 position-relative">
<i class="fa fa-check bg-green"></i>
<i class="fa fa-close bg-red"></i>
<input class="w-100" type="password" name="password" placeholder="Enter Your Password" required>
<div class="validation-card">"Your name should have at least 8 characters, 1 UPPERCASE, 1 lowercase, 1 number, 1 $peci@l ch@r@cter."</div>
</div>
<div class="col-lg-6 position-relative">
<i class="fa fa-check bg-green"></i>
<i class="fa fa-close bg-red"></i>
<input class="w-100" type="password" name="repassword" placeholder="Re-enter Your Password" required>
<div class="validation-card">"You should have matched passwords."</div>
</div>
<button class="btn btn-outline-warning mt-5" type="submit">Submit</button>
</div>
</form>
</div>
</section>
</body>
</html>