-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.58 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.58 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Topicos</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&family=Montserrat:
wght@300;400;500;700&family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="titulo">
<h2>Exemplo de tópicos</h2>
</header>
<section class="topicos">
<h2 class="topicos__titulo">Tópicos de consultas</h2>
<ul class="topicos__lista">
<li class="topicos__item"><a href="#" class="topicos__link">HTML,CSS e JAVASCRIPT</a></li>
<li class="topicos__item"><a href="#" class="topicos__link">REM e EM</a></li>
<li class="topicos__item"><a href="#" class="topicos__link">DISPLAY FLEX e FLEXBOX</a></li>
<li class="topicos__item"><a href="#" class="topicos__link">SVG e PNG</a></li>
<li class="topicos__item"><a href="#" class="topicos__link">VARIÁVEIS CSS</a></li>
<li class="topicos__item"><a href="#" class="topicos__link">MOBILE FIRST</a></li>
<li class="topicos__item"><a href="#" class="topicos__link">RESPONSIVIDADE</a></li>
<li class="topicos__item"><a href="#" class="topicos__link">MEDIA QUERY</a></li>
</ul>
</section>
</body>
</html>