-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (87 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="description" content="Affordable and professional web design" />
<meta name="author" content="Rental Systems" />
<title>Rent Your Place</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Rental</span> Website</h1>
</div>
<nav>
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li><a href="./html/about.html">About</a></li>
<li><a href="./html/services.html">Services</a></li>
</ul>
</nav>
</div>
</header>
<div class="sections">
<section id="showcase">
<div class="container">
<div class="showcase-text">
<h2>Affordable Rental Places Available</h2>
<p>
Get your dream rental places and apartments. The apartments and
houses are according to the professional standards. The very
gateway to luxury.
</p>
<a href="#boxes">
<img class="img-arrow" src="./img/down.png" alt="" />
</a>
</div>
<div class="video-container">
<video autoplay loop muted>
<source src="./img/video.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>
</div>
</section>
<section id="newsletter">
<div class="container">
<h2>Subscribe For Updates</h2>
<form>
<input type="email" placeholder="Enter Email..." />
<button type="submit" class="button_1">Subscribe</button>
</form>
</div>
</section>
<section id="boxes">
<div class="container">
<div class="box">
<img alt="" src="./img/Apartment.png" class="apartment" />
<h3>Apartments</h3>
<p>
The best luxurious and comfortable apartments avaialble. Your
dream place to live a comfortable life.
</p>
</div>
<div class="box">
<img alt="" src="./img/house.png" class="house" />
<h3>Houses</h3>
<p>The better life for you and your family</p>
</div>
<div class="box">
<img alt="" src="./img/maintanence.png" class="maintanence" />
<h3>Maintanence</h3>
<p>
The Perfect solution for the maintanence of your homes and
apartments.
</p>
</div>
</div>
</section>
</div>
<footer>
<p>Rental websites Copyright © 2022</p>
</footer>
</body>
</html>