-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcssexterno
62 lines (44 loc) · 1.46 KB
/
cssexterno
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>css externo</title>
<link rel="stylesheet" href="">
</head>
<body>
<header><!--cabecalho-->
</header>
<main><!--meio-->
<section>
<form>
<fieldset>
<legend>
<strong>formulario de cliente </strong>
</legend>
<br><br>
<section>
<input type="text" name="nome" id="name" class"
inputuser" required>
<label for="name" class="labelinput">nome completo
</label>
</section>
<br><br>
<selection>
<input type="text" name="email" id="email" class="inputuser" required>
<label for="email" class="labelimput"email>
</label>
</selection>
<br><br>
<selection>
<imput type="tel" name="telefone" id="telefone" class="imputuser" required>
</imput>
<label for="telefone" class="labelimput">telefone</label>
</selection>
</fieldset>
</form>
</section>
</main>
<footer><!--rodape-->
</footer>
</body>
</html>