-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Holi wishes</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Dosis&display=swap">
<link rel="shortcut icon" href="img/favicon_io/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="hero">
<div class="navbar">
<img src="img/logo.png" alt="logo">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div class="navbar-icons">
<img src="img/bell.png" alt="bell">
<img src="img/user.png" alt="bell">
<img src="img/menu.png" alt="bell">
</div>
</div>
<div class="banner">
<div class="left-column">
<div class="search-box">
<img src="img/search.png" alt="">
<input type="text" placeholder="Search about holi...">
</div>
<h1>Happy <span>Holi</span></h1>
<h3>Colors up your life <span>with this Holi</span></h3>
<p>
Holi is the day to express love with colors. It is a time to show affection. <br>
All the colors that are on you are of love.
</p>
<div class="btn">
<button type="button" class="primary-btn">Learn More</button>
<button type="button">Watch video</button>
</div>
<div class="social-icons">
<img src="img/twitter.png" alt="">
<img src="img/instagram.png" alt="">
<img src="img/pinterest.png" alt="">
<img src="img/twitter.png" alt="">
</div>
</div>
<div class="right-column">
<img src="img/banner-right.png" alt="">
</div>
</div>
</div>
</body>
</html>