-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 917 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Estações do ano</title>
<link rel="stylesheet" href="assets/style.css" />
<script defer src="assets/app.js"></script>
<link
rel="shortcut icon"
href="https://img.icons8.com/color/48/calendar--v1.png"
type="image/x-icon"
/>
</head>
<body>
<h1>Estações do ano</h1>
<div class="container">
<p>Descubra a estação do ano</p>
<div class="form">
<p>Informe o mês:</p>
<input type="text" placeholder="Nome ou número" />
</div>
<img class="capa" src="assets/fotos/capa.jpg" alt="" />
<button>Buscar</button>
<p class="resultado"></p>
</div>
<footer>
<p>Desenvolvido por Mirele Oliveira da Silva © 2024.</p>
</footer>
</body>
</html>