-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
25 lines (25 loc) · 912 Bytes
/
main.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calendar</title>
<link rel="stylesheet" type = "text/css" href="css/main.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="icon" href="images/icon.png">
</head>
<body>
<main>
<h1>Calendar</h1>
<img src="images/undraw_events_2p66.svg" alt="a people looking for a calendar">
<div>
<p>Bem vindo ao calendar!</p>
<p>Adicione eventos e organize-se!</p>
</div>
<a href="/login" class="login">Login</a>
<a href="/register" class="cadastro">Cadastre-se</a>
</main>
</body>
</html>