-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·106 lines (90 loc) · 3.66 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
<!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="./css/reset.css">
<link rel="stylesheet" href="./css/global.css">
<link rel="stylesheet" href="css/designed/first-fold.css">
<link rel="stylesheet" href="css/designed/second-fold.css">
<link rel="stylesheet" href="css/designed/footer.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=Plus+Jakarta+Sans:wght@500;700;800&display=swap" rel="stylesheet">
<title>Frontend Mentor | Skilled e-learning landing page</title>
</head>
<body>
<!--first fold-->
<main>
<header>
<nav class="navigation">
<img src="./assets/logo-dark.svg" alt="logo">
<button class="button--1">Get Started</button>
</nav>
</header>
<section class="firstContainer">
<div class="container--content">
<h1 class="title title--xl">Maximize skill, minimize budget</h1>
<p class="text--m">Our modern courses across a range of in-demand skills will give you the
knowledge you need to live the life you want.</p>
<button class="button--2">Get Started</button>
</div>
<div class="firstContainer--img" role="img"
aria-label="Image with a woman holding and blowing a mug and some
information like total course hours being 1451 and total members being 29k">
</div>
</section>
<!--second fold-->
<section class="skill">
<article class="card card--title">
<h2 class="title--white title--m">Check out our most popular courses!</h2>
</article>
<article class="card card--courses">
<img src="./assets/icon-animation.svg" alt="icon of a man running">
<h2 class="title title--s">Animation</h2>
<p class="text--m">Learn the latest animation techniques to create stunning motion
design and captivate your audience.
</p>
<a href="#">Get Started</a>
</article>
<article class="card card--courses">
<img src="./assets/icon-design.svg" alt="icon of a design logo">
<h2 class="title title--s">Design</h2>
<p class="text--m">Create beautiful, usable interfaces to help shape the future of
how the web looks.
</p>
<a href="#">Get Started</a>
</article>
<article class="card card--courses">
<img src="./assets/icon-photography.svg" alt="icon of a camera">
<h2 class="title title--s">Photography</h2>
<p class="text--m">Explore critical fundamentals like lighting, composition, and focus
to capture exceptional photos.
</p><a href="#">Get Started</a>
</article>
<article class="card card--courses">
<img src="./assets/icon-crypto.svg" alt="icon of a crypto">
<h2 class="title title--s">Crypto</h2>
<p class="text--m">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>
</article>
<article class="card card--courses">
<img src="./assets/icon-business.svg" alt="icon of a bag of money">
<h2 class="title title--s">Business</h2>
<p class="text--m">A step-by-step playbook to help you start, scale, and sustain your business
without outside investment.
</p>
<a href="#">Get Started</a>
</article>
</section>
</main>
<footer>
<div class="footer">
<img src="./assets/logo-light.svg" alt="">
<button class="button--3">Get Started</button>
</div>
</footer>
</body>
</html>