This repository was archived by the owner on May 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodelo.html
More file actions
41 lines (32 loc) · 1.31 KB
/
modelo.html
File metadata and controls
41 lines (32 loc) · 1.31 KB
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
36
37
38
39
40
41
<!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>Modelo</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<section class="container">
<h1>Título nivel 1 da página</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Harum, minima! Nobis sapiente, itaque provident
unde accusamus sequi commodi odio voluptatibus nostrum assumenda et neque temporibus libero dicta ipsam
totam veniam.
</p>
<form action="">
<label for="input-teste-1">Label teste #1</label>
<input type="text" id="input-teste-1">
<label for="input-teste-2">Label teste #2</label>
<input type="password" id="input-teste-2">
<label for="input-teste-3">Label teste #3</label>
<input type="email" id="input-teste-3">
<label for="input-teste-4">Label teste #4</label>
<input type="number" id="input-teste-4">
<button>Enviar</button>
</form>
</section>
<script src="./assets/js/main.js"></script>
</body>
</html>