-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.html
56 lines (41 loc) · 1.55 KB
/
content.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 name="viewport" content="width=device-width, initial-scale=1.0">
<title> Space Race </title>
<!-- Os arquivos CSS desta página -->
<link rel="stylesheet" href="CSS/basicConfig.css"> <!-- configurações padrões que todas as páginas devem possuir -->
<link rel="stylesheet" href="CSS/content.css">
<!-- Os scripts em javascript -->
<script src="SCRIPTS/basic.js" defer> </script>
<!-- Icone da guia -->
<link rel="icon" href="Imagens/terra_logo.svg">
</head>
<body>
<header>
<h1 id="titulo" onclick="window.location.href = 'index.html'" aria-label="Clique para ir a página inicial do Space Race!"> Space Race </h1>
<button id="botaoMenu" class="button" type="button" aria-label="clique para expandir o menu lateral">
<p> ☰ </p>
</button>
</header>
<nav id="menu">
</nav>
<main>
<div class="fundoEstrelado fundo image blur">
<h1 class="titulo-section"> Frase inspiradora</h1>
<div id="nome" class="image" role="img" aria-label="Uma imagem"> </div>
</div>
<h1 class="subtitulo">
Tópico
</h1>
<div id="nome" class="image textSide" role="img" aria-label="Uma imagem..."> </div>
<p>
Conteúdo.
</p>
</main>
<footer>
<h5> <sup>©</sup>2024 Ian_Productions. All rights reserved. </h5>
</footer>
</body>
</html>