-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (84 loc) · 2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML & CSS Day 5 Figma Hero Image</title>
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Raleway:wght@300;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Header part -->
<header>
<div class="wrapper">
<!-- navigation part start -->
<nav>
<div class="logo">GUVI</div>
<ul>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Services</a>
</li>
<li>
<a href="#">Our Work</a>
</li>
<li>
<a href="#" class="btn dark">Enrol Now</a>
</li>
</ul>
</nav>
<!-- navigation part end-->
<!-- body section left side start -->
<div class="hero-section">
<div class="left">
<h1>
Learn the art of <br />
Web Dev
</h1>
<p>
This is a comprehensive course on Web Development. You will learn
everything from generating an idea to publishing your Web Apps to
different platforms.
</p>
<a href="#" class="btn light enrol-icon">Enrol Now</a>
</div>
<!-- body section left side end -->
<!-- body section right side start -->
<div class="right">
<img src="images/hero-image.png" alt="hero-image" />
</div>
<div class="achievement-cards">
<div class="achievement-card students-enrolled">
<div class="content">
<div>
<h3>32K</h3>
</div>
<p>Students Enrolled</p>
</div>
<div class="bg"></div>
</div>
<div class="achievement-card overall-rating">
<div class="content">
<div>
<h3>4.7</h3>
<img src="images/star-icon.svg" alt="star-icon" />
</div>
<p>Overall Rating</p>
</div>
<div class="bg"></div>
</div>
</div>
</div>
</header>
</div>
</header>
<!-- body section right side end -->
</body>
</html>