-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (75 loc) · 2.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>skilled landing page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<div class="container">
<header id="header">
<h1>Skilled</h1>
<a href="#">Get started</a>
</header>
<section class="preview">
<div class="review">
<h1>Maximize skill, minimize budget</h1>
<p>Our demand course across a range of in-demand skills will give you the knowledge you need to live the life you want.</p>
<a href="#">Get started</a>
</div>
<div class="img">
<img src="images/image-mobile.jpeg" width="250px">
</div>
</section>
<section class="subject">
<div class="courses course-feature">
<p>Check out our most popular courses</p>
</div>
<div class="courses">
<img src="/images/icon-animation.svg">
<h1>Animation</h1>
<p>Learn the latest animation techniques to create stunning motion design and captivate your audience.</p>
<a href="#">Get Started</a>
</div>
<div class="courses">
<img src="/images/icon-design.svg">
<h1>Design</h1>
<p>Create beautiful, usable interfaces to help shape the future of how the web looks.</p>
<a href="#">Get Started</a>
</div>
<div class="courses">
<img src="/images/icon-photography.svg">
<h1>Photography</h1>
<p>Explore critical fundamentals like lightning, composition, and focus to capture exceptional photos.</p>
<a href="#">Get Started</a>
</div>
<div class="courses">
<img src="/images/icon-crypto.svg">
<h1>Crypto</h1>
<p>All you need to know to get started in investing in crypto. Go from beginner to advance with this 54hour course.</p>
<a href="#">Get Started</a>
</div>
<div class="courses">
<img src="/images/icon-business.svg">
<h1>Business </h1>
<p>A step-by-step playbook to help you start, scale and sustain your business without investment.</p>
<a href="#">Get Started</a>
</div>
</section>
</div>
<footer>
<div class="footer">
<h1>Skilled</h1>
<a href="#">Get started</a>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>
Coded by <a href="https://twitter.com/iamArinola__?t=dHwELLQljWDtniS_38S5Og&s=09">iamArinola</a>
</div>
</footer>
</div>
<script src="main.js"></script>
</body>
</html>