-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
39 lines (39 loc) · 1.3 KB
/
Copy pathindex.php
File metadata and controls
39 lines (39 loc) · 1.3 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
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700" rel="stylesheet">
<link rel="stylesheet" href="recursos/css/estilo.css">
<title>Curso PHP</title>
</head>
<body>
<header class="cabecalho">
<h1>Curso PHP</h1>
<h2>Índice dos Exercícios</h2>
</header>
<main class="principal">
<div class="conteudo">
<nav class="modulos">
<div class="modulo verde">
<h3>Módulo 01</h3>
<ul>
<li><a href="exercicio.php?dir=basico&file=ola">Olá PHP!</a></li>
</ul>
<ul>
<li><a href="exercicio.php?dir=basico&file=html">Integração HTML</a></li>
</ul>
<ul>
<li><a href="exercicio.php?dir=basico&file=css">Integração CSS</a></li>
</ul>
<ul>
<li><a href="exercicio.php?dir=basico&file=comentarios">Comentários</a></li>
</ul>
</div>
</nav>
</div>
</main>
<footer class="rodape">
COD3R & ALUNOS © <?= date('Y'); ?>
</footer>
</body>
</html>