-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
23 lines (23 loc) · 1.08 KB
/
home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="home.css">
</head>
<body>
<div class="container">
<div class="header"></div>
<div class="main">
<div class="image1"><img src="img/animais.png" class="img-fluid"></div>
<div class="image2"><img src="img/caomer.png" class="img-fluid" ></div>
<button class="button" style="background-color:white; color:black;" onclick="window.location.href='about.html';">Saiba mais</button>
</div>
<div class="footer">
<button class="button" style="background-color: #fff; color: #000;" onclick="window.location.href='login.php';">Entrar</button>
<button class="button" style="background-color:black; color:white;" onclick="window.location.href='cadastro.php';">Registrar</button>
</div>
</div>
</body>
</html>