-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (98 loc) · 4.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
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="pt-br">
<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>Tom's Jazz School</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="index.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500;900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<img src="img/logo.svg" alt="Tom's Jazz School" width="106" height="44">
<nav>
<a href="#">Início</a>
<a href="#">Cursos</a>
<a href="#">Eventos</a>
<a href="#">Contato</a>
</nav>
<a href="#" class="button mt-1 mb-1 mx-auto">Se inscreva</a>
</div>
</header>
<main>
<section class="hero-section">
<div class="container row-reverse">
<img src="img/hero-img.svg" alt="Banda de jazz tocando">
<div>
<h1 class="mt-2">Crie algo <span class="text-primary decoration">impactante</span> com música</h1>
<p class="mt-2 mb-2">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua.</p>
<a href="#" class="button">Comece agora</a>
</div>
</div>
</section>
<section class="courses-section">
<div class="cards">
<article class="card">
<img src="img/piano.png" alt="ícone de teclas de piano" height="48" width="48">
<strong>Piano popular</strong>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, dolore magna aliqua.</p>
<a href="#">
<img src="img/arrow-right.svg" alt="Ir para página do curso" height="48" width="48">
</a>
</article>
<article class="card">
<img src="img/clef.png" alt="ícone da clave de sol" height="48" width="48">
<strong>Teoria musical</strong>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, dolore magna aliqua.</p>
<a href="#">
<img src="img/arrow-right.svg" alt="Ir para página do curso" height="48" width="48">
</a>
</article>
<article class="card">
<img src="img/sax.png" alt="ícone de saxofone" height="48" width="48">
<strong>Sax alto</strong>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, dolore magna aliqua.</p>
<a href="#">
<img src="img/arrow-right.svg" alt="Ir para página do curso" height="48" width="48">
</a>
</article>
<article class="card">
<img src="img/drums.png" alt="ícone de bateria" height="48" width="48">
<strong>Bateria</strong>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, dolore magna aliqua.</p>
<a href="#">
<img src="img/arrow-right.svg" alt="Ir para página do curso" height="48" width="48">
</a>
</article>
</div>
<h2 class="text-center">E <span class="text-primary">varios</span> outros!</h2>
<a href="#" class="button mt-2 mx-auto">Conhecer cursos</a>
</section>
</main>
<footer>
<div class="container">
<div class="about-column">
<img src="img/logo.svg" alt="Tom's Jazz School" class="mt-1 mb-1" width="106" height="44">
<p class="mb-2">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua.</p>
</div>
<nav class="mb-2">
<a href="#">Início</a>
<a href="#">Cursos</a>
<a href="#">Eventos</a>
<a href="#">Contato</a>
</nav>
<form class="newsletter-form">
<label for="email" class="mb-1">Receba materiais gratuitos no seu email</label>
<input type="text" name="email" id="email" class="mb-1" placeholder="Digite o seu e-mail">
<button class="button mb-2">Quero receber</button>
</form>
</div>
</footer>
</body>
</html>