-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.29 KB
/
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
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="./src/styles/main.css">
<title>Formulário Animado</title>
</head>
<body>
<div class="container">
<section class="section-1">
<div class="form-container">
<h1>Registrar-se</h1>
<form action="#" class="form">
<label for="">Nome</label>
<input type="text" name="nome" id="nome" placeholder="João">
<label for="">Sobrenome</label>
<input type="text" name="nome" id="nome" placeholder="da Silva ">
<label for="">Email</label>
<input type="email" name="email" id="email" placeholder="[email protected]">
<button type="submit">Registrar</button>
</form>
</div>
<div class="image-container">
<img src="./src/images/phone.png" alt="phone de ouvido azul" >
</div>
</section>
</div>
<ul class="squares">
<!-- <li></li> -->
</ul>
<script src="src/scripts/script.js"></script>
</body>
</html>