-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (91 loc) · 4.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../day5/styles.css">
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Day 5</title>
</head>
<body>
<section class="first-head">
<div class="bg-video">
<video autoplay muted loop class="video-content">
<source src="../day5/image/Windsurfer .mp4" type="video/mp4" class="video-src">
<source src="../day5/image/Windsurfer .mp4" type="video/webm" class="video-src">
Your browser does not support the video tag.
</video>
</div>
<nav class="nav">
<div>
<ul>
<li>CHARTER A YACHT</li>
<li>ROUTES</li>
<li>SERVICES</li>
<li>MEMBERSHIP CLUB</li>
</ul>
</div>
<div class="contact-div">
<h6>CONTACT US</h6>
<button>LOGIN</button>
</div>
</nav>
<div class="first-head-content">
<div class="policy-div">
<a href="javascript:void(0);" class="policy-div-link">PRIVACY POLICY</a>
<a href="javascript:void(0);" class="policy-div-link">CONTACT</a>
</div>
<div class="topic-div">
<h2>CHARTER A YACHT IN <br> SAN FRANCISCO</h2>
<p>CHARTER A LUXURY YACHT WITH THE TAP OF A BUTTON</p>
<div class="btn-div">
<button class="reserve">RESERVE</button>
</div>
</div>
<div class="social-div">
<a href="javascript:void(0);" class="social-link"><i class="fa fa-facebook-f icon"></i></a>
<a href="javascript:void(0);" class="social-link"><i class="fa fa-twitter icon"></i></a>
<a href="javascript:void(0);" class="social-link"><i class="fa fa-linkedin icon"></i></a>
<a href="javascript:void(0);" class="social-link"><i class="fa fa-youtube icon"></i></a>
<a href="javascript:void(0);" class="social-link"><i class="fa fa-instagram icon"></i></a>
</div>
</div>
<div class="second-section">
<div class="second-section-content">
<div class="second-section-head">
<h2>SPECIAL OFFERS</h2>
<button class="reserve">VIEW ALL</button>
</div>
<div class="second-section-boxes">
<div class="card">
<img src="../day5/image/yatch-4.jpg" alt="Yacht" class="y-img">
<div class="container">
<h6>Wedding Organization on the boat</h6>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. exercitationem iste beatae maiores.</p>
<h6 class="price">Starting from <b>$900</b></h6>
</div>
</div>
<div class="card">
<img src="../day5/image/download-1.jpg" alt="Yacht" class="y-img">
<div class="container">
<h6>An example of a very long service name placed on a homepage</h6>
<p>Doloribus, culpa. Molestiae repellendus quam assumenda vel ququia sint exercitationem iste beatae maiores.</p>
<h6 class="price">Starting from <b>$900</b></h6>
</div>
</div>
<div class="card">
<img src="../day5/image/yacht-3.jpg" alt="Yacht" class="y-img">
<div class="container">
<h6>Should be longer than two just like in this example</h6>
<p>vel nemo sit sunt asperiores, quis tempora quae modi reiciendis quia sint exercitationem iste beatae maiores.</p>
<h6 class="price">Starting from <b>$900</b></h6>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>