-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.1 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.1 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
33
34
35
36
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>WebModules</title>
<link rel="stylesheet" href="assets/index.css" charset="utf-8">
</head>
<body>
<main class="main">
<header>
<h1 id="WebModules">WebModules</h1>
<p>Módulos Web funcionais e flexíveis para uso geral.</p>
<ul>
<li><a href="#documentacao">Documentação</a></li>
<li><a href="#modulos">Módulos</a></li>
</ul>
</header>
<section id="documentacao">
<h1>Documentação</h1>
<ul>
<li><a href="docs/escrever-modulo.html">Escrever um Módulo</a></li>
</ul>
</section>
<section id="modulos">
<h1>Módulos</h1>
<p>Lista do módulos.</p>
<ul>
<li><a href="modules/jumbotron/">Jumbotron</a></li>
<li><a href="modules/caixaDeCodigo/">Caixa de Código</a></li>
<li><a href="modules/playerDeMusica/">Player de Música</a></li>
</ul>
</section>
</main>
</body>
<script type="text/javascript" src="assets/scripts.js"></script>
</html>