-
Notifications
You must be signed in to change notification settings - Fork 0
/
enquire.html
96 lines (94 loc) · 3.07 KB
/
enquire.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
<!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" />
<meta
name="description"
content="Coding Cell website made by Mandip Bhattarai"
/>
<title>RealState</title>
<link rel="icon" href="assests/img/logo.png" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.css"
/>
<link rel="stylesheet" href="assests/css/style.css" />
<link rel="stylesheet" href="assests/css/responsive.css" />
</head>
<body>
<header class="header">
<nav class="navbar">
<h2 class="logo">
<a href="#">PropertyDekho</a>
</h2>
<input type="checkbox" id="menu-toggle" />
<label for="menu-toggle" id="hamburger-btn">
<svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 0 24 24"
width="24"
>
<path
d="M3 12h18M3 6h18M3 18h18"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
/>
</svg>
</label>
<ul class="links">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Locations</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<div class="buttons">
<a href="#" class="signin">Sign In</a>
<a href="#" class="signup">Sign Up</a>
</div>
</nav>
</header>
<div class="enquire">
<h2>Enquire Form</h2>
<div class="enquire_form">
<form method="post" action="">
<input type="text" name="Name" placeholder="Name" /> <br />
<input type="email" name="Email" placeholder="Email-ID" /> <br />
<input type="number" name="Number" placeholder="Contact Number" />
<br />
<textarea
name="Your doubts"
cols="7"
rows="5"
placeholder="Write your Doubts we will reach you soon"
></textarea
><br />
<button type="submit">Submit</button>
</form>
</div>
</div>
<!-- script here -->
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
<script src="assests/js/script.js"></script>
<script src="assests/js/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.js"></script>
</body>
</html>