-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (20 loc) · 858 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Ferrari</title>
<link rel="stylesheet" href="index.css"> <!-- Link para o arquivo de estilos CSS externo -->
<link rel="icon" type="image/x-icon" href="https://w7.pngwing.com/pngs/1016/221/png-transparent-ferrari-458-car-sticker-decal-ferrari-logo-ferrari-logo-logo-fictional-character-signage.png">
</head>
<body>
<div class="login-container">
<form class="login-form">
<h2>Login Ferrari</h2>
<input type="text" placeholder="Usuário" required>
<input type="password" placeholder="Senha" required>
<a href="pricipal.html" class="btn-link">ENTRAR</a> <!-- Link estilizado como botão -->
</form>
</div>
</body>
</html>