-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (66 loc) · 2.68 KB
/
index.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
<!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>DreamHouse</title>
<!------------------------------font awesone------------------------------------------->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--------------------------------style sheet------------------------------------------->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!----------------------------header section begins----------------------------------->
<header class="header">
<a href="#" class="logo"><i class="fas fa-solid fa-house"></i></i> DreamHouse</a>
<div class="navigation">
<nav class="navbar">
<a href="#home">Home</a>
<a href="#Rent">Rent</a>
<a href="#Lease">Lease</a>
<a href="#Land">Land</a>
<a href="#Agent">Agent</a>
<a href="#Contact us">Contact us</a>
</nav>
</div>
<div class="button1">
<p> Get Started</p>
</div>
</header>
<div class="line"></div>
<section class="section1">
<div class="section-text">
<h2>Helping you find the <br> property of your <br> dreams.</h2>
<p>creating quality urban lifestyles, building <br> stronger communities.</p>
<button class="button2"><i class="fa-brands fa-leanpub"></i> Learn More</button>
<button class="button3"><i class="fa-solid fa-credit-card"></i></i> Quick buy</button>
</div>
<div class="blue-circle">
<p>.</p>
</div>
<div>
<img src="Images\real-estate-700x430-1.jpg" alt="real-estate">
</div>
</section>
<section class="section2">
<div class="range">
<h1>Location ^</h1>
<p>Lekki</p>
</div>
<div class="range">
<h1>Property Type ^</h1>
<p>Duplex</p>
</div>
<div class="range">
<h1>Max Price ^</h1>
<p>#150,000</p>
</div>
<div>
<p class="button1"><i class="fa-solid fa-magnifying-glass"></i> Search</p>
</div>
</section>
<script src="script.js"></script>
</body>
</html>