-
Notifications
You must be signed in to change notification settings - Fork 0
/
26_pseudo.html
71 lines (64 loc) · 1.72 KB
/
26_pseudo.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
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
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="pt-br">
<head>
<title>pagina de exemplo estrutura basica</title>
<meta charset="utf-8">
<meta name="author" content="lucas">
<meta name="description" content="lista de documentos">
<meta name="keywords" content="html5, tecnologia">
<style>
input[type="checkbox"]{
width: 100px;
height: 100px;
}
input[type="checkbox"]:checked{
width: 50px;
height: 50px;
}
button:disabled {
background: blue;
}
p{
color: red;
}
p:empty::before{
content: "paragrafo vazio nao dá, né!";
}
input[type="text"]:focus{
background: #ccc;
}
input[type="text"]:read-only{
background: yellow;
}
a:focus, a:hover, div:focus{
background: red;
}
input::placeholder{
color: blue;
}
</style>
</head>
<body>
<label><input type="checkbox" value="sim"> Aceito o contrato</label>
<button>vai</button>
<button disabled>volta</button>
<p>paragrafo 1</p>
<p> </p>
<p></p>
<hr>
<input type="text">
<input type="text" value="valor inicial">
<input type="text" value="valor inicial" readonly>
<input type="text" value="valor inicial" disabled>
<input type="text" placeholder="valor do placeholder">
<ul>
<li><a href="#">link falso</a></li>
<li><a href="#">link falso</a></li>
<li><a href="#">link falso</a></li>
<li><a href="#">link falso</a></li>
</ul>
<div tabindex="1">div 1</div>
<div tabindex="2">div 2</div>
<div tabindex="3">div 3</div>
</body>
</html>