-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (32 loc) · 1.21 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- Definição do tipo de documento HTML e idioma -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Importação de fontes do Google e estilos CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="CSS/materialize.css">
<link rel="stylesheet" href="CSS/index.css">
<!-- Título da página exibido na aba do navegador -->
<title>Areas</title>
</head>
<body>
<!-- Contêiner principal com uma classe "border" para criar uma borda -->
<div class="container border">
<div class="row">
<!-- Coluna de tamanho 12, ocupando toda a largura -->
<div class="col s12">
<!-- Título principal da página -->
<h1>Fabrica de Automoveis</h1>
</div>
</div>
<!-- Área vazia para adicionar elementos dinamicamente -->
<div class="row" id="areas-index">
</div>
</div>
<!-- Importação de arquivos JavaScript -->
<script src="JS/materialize.js"></script>
<script src="JS/index.js"></script>
</body>
</html>