-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (95 loc) · 3.21 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
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="stylesheet" href="/dist/css/main.css">
<title>Frontend Mentor | Skilled e-learning landing page</title>
</head>
<body class="container">
<!--Header -->
<header>
<div class="header__container container">
<a href="#" class="header__logo logo">
<img src="assets/logo-dark.svg" alt="Skilled e-learning logo">
</a>
<button>
<a href="#" class="btn header__btn">Get Started</a>
</button>
</div>
</header>
<main>
<!-- Hero -->
<section class="hero">
<div class="hero__container container">
<div class="hero__content">
<h1 class="hero__content--title">Maximize skill, minimize budget</h1>
<p class="hero__content--text">Our modern courses across a range of in-demand skills will give you the
knowledge you need to live the life you want.</p>
<a href="#" class="btn hero__btn">Get Started</a>
</div>
<div class="hero__img">
picture
</div>
</div>
</section>
<!-- Courses -->
<section class="courses">
<div class="courses__container container">
<div class="courses__heading">
<h2>Check out our most popular courses!</h2>
</div>
<div class="course__content design">
<h3>Animation
</h3>
<p>Learn the latest animation techniques to create stunning motion
design and captivate your audience.
</p>
<a href="#" class="course__link">Get Started</a>
</div>
<div class="course__content design">
<h3>Design
</h3>
<p>Create beautiful, usable interfaces to help shape the future of
how the web looks.
</p>
<a href="#" class="course__link">Get Started</a>
</div>
<div class="course__content photography">
<h3>Photography
</h3>
<p>Explore critical fundamentals like lighting, composition, and focus
to capture exceptional photos.
</p>
<a href="#" class="course__link">Get Started</a>
</div>
<div class="course__content crypto">
<h3>Crypto
</h3>
<p>All you need to know to get started investing in crypto. Go from beginner
to advanced with this 54 hour course.
</p>
<a href="#">Get Started</a>
</div>
<div class="course__content business">
<h3>Business
</h3>
<p>A step-by-step playbook to help you start, scale, and sustain your business
without outside investment.</p>
<a href="#" class="course__link">Get Started</a>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer__container container">
<a href="#" class="footer__logo logo">
<img src="assets/logo-light.svg" alt="Skilled e-learning logo">
</a>
<a href="#" class="btn footer__btn">Get Started</a>
</div>
</footer>
</body>
</html>