-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (29 loc) · 1.27 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Criativo</title>
<link rel="stylesheet" href="style.css">
<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=Poppins:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="cabecalho">
<img class="cabecalho-imagem" src="./img/logo.png" alt="logo da escola">
<h1 class="cabecalho-titulo">Meu Site Criativo</h1>
<ul class="cabecalho-lista">
<li class="cabecalho-lista-item"><a href="#escola">ESCOLA</a></li>
<li class="cabecalho-lista-item"><a href="#estudante"> ESTUDANTE</a></li>
</ul>
</header>
<section class="escola">
<div class="escola-div-conteudo">
<h2 class="escola-titulo">Colegiio Civico Militar Professor Francisco Villanueva
<p class="escola-texto-um">Ensino Fundamental e Ensino Médio </p></h2>
<p class="escola-texto-dois">A turma 2c é a mais estudiosa e famosa</p>
</div>
</section>
</body>
</html>