-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevQuest - Quests</title>
<link rel="stylesheet" href="./src/css/style.css">
</head>
<body>
<main>
<h1>DevQuest - Quests</h1>
<div class="quests">
<a href="./4-react-base/dist/index.html" class="quest">
<h3 class="titulo">4. React Base (dist)</h3>
<img class="imagem" src="./src/images/4.png" alt="">
<span class="descricao">Componente que colore e transforma um texto para maiúsculo (uppercase) utilizando JS.<br>Componente para mostrar mensagem com a label do botão quando clicado.</span>
</a>
<a href="./3-fetch-github-api/index.html" class="quest">
<h3 class="titulo">3. GitHub API - buscando usuários com fetch</h3>
<img class="imagem" src="./src/images/3.webp" alt="">
<span class="descricao"></span>
</a>
<a href="./2-formulario-com-validacao/" class="quest">
<h3 class="titulo">2. HTML/CSS/JS - Formulário com validação</h3>
<img class="imagem" src="./src/images/2.webp" alt="">
<span class="descricao"></span>
</a>
<a href="./1-huddle-landing-page-with-single-introductory-section/" class="quest">
<h3 class="titulo">1. HTML/CSS - huddle landing page with single introductory section</h3>
<img class="imagem" src="./src/images/1.webp" alt="">
<span class="descricao"></span>
</a>
</div>
</main>
</body>
</html>