-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
79 lines (72 loc) · 2.54 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Your Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Link to css -->
<link rel="stylesheet" href="Styles\styles.css">
<!-- Boxicons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<link rel="icon" href="image/Logo.png">
</head>
<body>
<!-- Navbar -->
<header>
<div class="nav container">
<!-- Logo -->
<a href="index.php" class="logo"> <img src="image/Logo.png" alt=""> Your Home</a>
<!-- Menu Icon -->
<input type="checkbox" name="" id="menu">
<label for="menu" <i class='bx bx-menu' id="menu-icon" ></i>></label>
<!-- Nav List -->
<ul class="navbar">
<li><a href="index.php">Home</a></li>
<li><a href="index.php">About Us</a></li>
</ul>
</div>
</header>
<!-- home -->
<section class="home container" id="home">
<div class="home-text">
<h1>Find your Next <br>Perfect Place to <br>Live.</h1>
<a href="signUp.php" class="btn">Sign Up</a><a href="login.php" class="btn">Log In</a>
</div>
</section>
<!-- About us -->
<section class="about" id="about">
<div class="about-container">
<img class="about-img" src="Resources\pexels-sebastian-731082.jpg" alt="">
<h5>ABOUT US</h5>
<h1>We provide the best <br>property for you!</h1>
<br>
<p>Our mission: To motivate and inspire people to get living the life they deserve.</p>
</div>
<br>
</section>
<section class="sales container" id="sales">
<!-- Box 1-->
<div class="box">
<i class='bx bx-user'></i>
<h3>Make Your Dream True</h3>
<p>finding a home with the perfect neighborhood and community to make the stay enjoyable.</p>
</div>
<!-- Box 2-->
<div class="box">
<i class='bx bx-desktop'></i>
<h3>Start Your Membership</h3>
<p>To stay informed of new properties.</p>
</div>
<!-- Box 1-->
<div class="box">
<i class='bx bx-home-alt'></i>
<h3>Enjoy Your New Home</h3>
<p>Today, you can easily advertise your property on our portal, or you can find your new home quickly and seamlessly</p>
</div>
</section>
<!-- copyright -->
<div class="copyright">
<p>© YOUR HOME 2023.com</p>
</div>
</body>
</html>