-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (73 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div id="header">
<img id="logo_dark" src="assets/logo-dark.svg" alt="logo_skilled">
<button type="button" class="button_get_started_black">Get Started</button>
</div>
</header>
<main>
<div id="main">
<div id="main_up">
<div id="main_up_left">
<h1 class="h1_maximize">Maximize skill, minimize budget</h1>
<p class="p_our_modern">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 type="button" class="button_get_started_red">Get Started</button>
</div>
<div id="main_up_right"></div>
</div>
<div id="main_down">
<div id="cards_area">
<div id="check">
<h3>Check out our most popular courses!</h3>
</div>
<div class="card">
<img src="assets/icon-animation.svg" alt="animation">
<h3>Animation</h3>
<p>Learn the latest animation techniques to create stunning motion design and captivate your audience.</p>
<h4>Get Started</h4>
</div>
<div class="card" id="design">
<img src="assets/icon-design.svg" alt="design">
<h3>Design</h3>
<p>Create beautiful, usable interfaces to help shape the future of how the web looks.</p>
<h4>Get Started</h4>
</div>
<div class="card">
<img src="assets/icon-photography.svg" alt="photography">
<h3>Photography</h3>
<p>Explore critical fundamentals like lighting, composition, and focus to capture exceptional photos.</p>
<h4>Get Started</h4>
</div>
<div class="card">
<img src="assets/icon-crypto.svg" alt="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>
<h4>Get Started</h4>
</div>
<div class="card">
<img src="assets/icon-business.svg" alt="business">
<h3>Business</h3>
<p>A stpe-by-step playbook to help you start, scale, and sustain your business outside investment.</p>
<h4>Get Started</h4>
</div>
</div>
</div>
</div>
</main>
<footer>
<div id="footer">
<img id="logo_light" src="assets/logo-light.svg" alt="logo_light">
<button class="button_get_started_purple">Get Started</button>
</div>
</footer>
</body>
</html>