-
Notifications
You must be signed in to change notification settings - Fork 0
/
index11.html
102 lines (95 loc) · 2.94 KB
/
index11.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="HTML, CSS, Desenvolvimento Web, Coderhouse">
<meta name="description"
content="Este é um desafio complementar para a aula 11 de Desenvolvimento Web da Coderhouse">
<link rel="stylesheet" href="./styles/aula11.css">
<link href='https://fonts.googleapis.com/css?family=DM Sans' rel='stylesheet'>
<title>Desafio Complementar</title>
</head>
<body>
<h1>Aula 11</h1>
<h4>Prática 1</h4>
<div class="on-hover">Passe o mouse por cima para ver o <strong>Hover</strong> funcionando</div>
<div class="on-active">Clique e segure para ver o <strong>Active</strong> funcionando</div>
<div>
<a href="https://google.com">Não visitado</a><br>
<a href="" class="on-visited">Se o link já foi visitado, fica com a estilização <strong>Visited</strong></a>
</div>
<fieldset>
<legend>Clique no input para ver o <strong>Focus</strong> funcionando</legend>
<input id="focus" type="text" class="on-focus"></input>
</fieldset>
<h4>Prática 2</h4>
<div>
<p>First and last-child</p>
<ul>
<li>Texto 1</li>
<li>Texto 2</li>
<li>Texto 3</li>
<li>Texto 4</li>
</ul>
</div>
<div>
<table>
<thead>
<tr>
<th>Idade</th>
<th>Nome</th>
</tr>
</thead>
<tbody>
<tr>
<td>3</td>
<td>Filho</td>
</tr>
<tr>
<td>36</td>
<td>Pai</td>
</tr>
<tr>
<td>69</td>
<td>Avô</td>
</tr>
<tr>
<td>90</td>
<td>Bisavô</td>
</tr>
</tbody>
</table>
</div>
<div class="not-div">Teste Not</div>
<h4>Prática 3</h4>
<div>
<input type="radio" disabled>
<input type="checkbox" required>
<select name="" id="">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<input type="email">
<input type="text" required>
</div>
<div>
<input type="text" placeholder="Teste">
</div>
<div><p class="p1">teste</p></div>
<div>
<p class="p2">Linha 1<br>Linha 2<br>Linha 3</p>
</div>
<div>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
</div>
</body>
</html>