-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (83 loc) · 3.02 KB
/
index.html
File metadata and controls
87 lines (83 loc) · 3.02 KB
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
<!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>Document</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<nav class="navbar">
<h1 class="logo">Habits</h1>
<ul class="nav-links">
<li class="active"><a href="#"></a>Home</li>
<li><a href="#"></a>good</li>
<li><a href="#"></a>Explore</li>
<li><a href="#"></a>About</li>
<li class="ctn"><a href="#"></a>Contact</li>
</ul>
<img src="menu-btn.png" alt="" class="menu-btn">
</nav>
<header>
<div class="header-content">
<h2>My World My Rules</h2>
<div class="line"></div>
<h1>Live & Inpsire</h1>
<a href="#" class="ctn">Learn More</a>
</div>
</header>
<section class="events">
<div class="title">
<h1>Do and See</h1>
<div class="line"></div>
</div>
<div class="row">
<div class="col">
<img src="red-book.jpg" alt="">
<h4>Read a Book</h4>
<p>Reading books benefits both your physical and mental health, and those benefits can last a lifetime. They begin in early childhood and continue through the senior years.</p>
<a href="#" class="ctn">Learn More</a>
</div>
<div class="col">
<img src="img1.png" alt="">
<h4>Travel Around The World</h4>
<p>Some of my most cherished memories are from the times when I was travelling. If you travel, you can experience things that you could never experience at home. You may see beautiful places and landscapes that do not exist where you live</p>
<a href="#" class="ctn">Learn More</a>
</div>
</div>
</section>
<section class="explore">
<div class="explore-content">
<h1> Explore The World</h1>
<div class="line"></div>
<p>Learn New things from what you do</p>
<a href="" class="ctn">Learn More</a>
</div>
</section>
<section class="tours">
<div class="row">
<div class="col content-col">
<h1>Crate Own Path</h1>
<p>Lets create your own path</p>
<a href="#" class="ctn">Learn More</a>
</div>
<div class="col image-col">
<div class="image-gallery">
<img src="img5.png">
<img src="img6.png">
<img src="img3.png">
<img src="img4.png">
</div>
</div>
</div>
</section>
<section class="footer">
<p>some where in the world if you want to come just comment it out </p>
<p>copyright @copy SABHA'S WORLD</p>
</section>
<footer>
</footer>
<script src="index.js"></script>
</body>
</html>