-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (48 loc) · 2.24 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
<!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>Curso Front-End</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header class="cabecalho">
<nav class="cabecalho__menu">
<a class="cabecalho__menu__link" href="index.html">Home</a>
<a class="cabecalho__menu__link" href="relatos.html">Relatos</a>
<a class="cabecalho__menu__link" href="projetos.html">Projetos feitos</a>
<a class="cabecalho__menu__link" href="redes.html">Conhecer Mais</a>
</nav>
</header>
<main class="apresentacao">
<section class="apresentacao__conteudo">
<h1 class="apresentacao__conteudo__titulo">Aprenda Front-end<strong
class="titulo-destaque"> com React e CSS</strong></h1>
<p class="apresentacao__conteudo__texto">Transforme sua carreira e leve suas habilidades de desenvolvimento front-end a outro nível com o nosso curso especializado em React e CSS!
</p>
<section class="apresentacao__detalhes">
<ul>
<li>Duração: <strong>8 semanas</strong></li>
<li>Pré-requisitos: <strong>Conhecimento básico em HTML e JavaScript</strong></li>
<li>Público-alvo: <strong>Desenvolvedores iniciantes e intermediários</strong></li>
<li>Formato: <strong>Aulas em vídeo, material de leitura, exercícios práticos</strong></li>
<li><strong>Certificado de conclusão disponível</strong></li>
</ul>
</section>
<section class="apresentacao__detalhes__valor">
<h2 class="apresentacao__detalhes__valor__preco">R$ 100,00</h2>
</section>
<div class="apresentacao__links">
<a class="apresentacao__links__link" href="#">
Garantir minha vaga
</a>
</div>
</section>
</main>
<footer class="rodape">
<h4>Desenvolvido por <a href="https://github.com/devjunr">Adriano Jr</a></h4>
</footer>
</body>
</html>