-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (49 loc) · 1.86 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
<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="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<div class="main-container">
<div class="menu-logo-container">
<div class="logo-holder">
<div class="logo">
<img src="images/logo.jpg" alt="Logo">
</div>
</div>
<div class="menu-icon">
<i class="bi bi-three-dots-vertical"></i>
</div>
<nav>
<ul>
<li>
<a href="#">HOME</a>
</li>
<li>
<a href="#">ABOUT</a>
</li>
<li>
<a href="#">PRODUCT</a>
</li>
<li>
<a href="#">SERVICES</a>
</li>
<li>
<a href="#">CONTACT</a>
</li>
</ul>
</nav>
</div>
<div class="content-container">
<p class="sub-heading">The Real Meaning of</p>
<p class="main-heading">LIFE</p>
<P class="short-description">In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before final copy is available.</P>
<button class="see_more-btn">SEE MORE</button>
</div>
</div>
</body>
</html>