-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·44 lines (39 loc) · 898 Bytes
/
index.php
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
<!DOCTYPE html>
<html>
<?php
include ("pages/conectar.php");
$iniciou = iniciar();
?>
<head>
<meta charset="UTF-8">
<title>Raça de Cães</title>
<link rel="stylesheet" type="text/css" href="css/index.css">
</head>
</style>
<body>
<header>
<h1>Raça de Cães</h1>
</header>
<center>
<table>
<tr>
<td width="30%" height="40%">
<a href="pages/racacaes.php" class="btn blue">Começar<br><br>
<img src="imgs/dog.png" height="70" width="70">
</a>
</td>
<td width="30%" height="40%">
<a href="pages/historico.php" class="btn blue">Histórico<br><br>
<img src="imgs/hist.png" height="70" width="70">
</a>
</td>
<td width="30%" height="40%">
<a href="pages/regras.php" class="btn blue">Instruções<br><br>
<img src="imgs/rules.png" height="70" width="70">
</a>
</td>
</tr>
</table>
</center>
</body>
</html>