-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 869 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 869 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Título da página</title>
</head>
<body>
<h1>Texto Título nível 1</h1>
<p>Primeiro parágrafo da página.</p>
<p>Segundo parágrafo da página.</p>
<table width="300" height="300" border="1" bgcolor="#FFDAB9">
<tr height="10%">
<th scope="col">Name</th>
<th scope="col">Age</th>
</tr>
<tr height="45%">
<td width="50%">Danilo</td>
<td width="50%">49</td>
</tr>
<tr width="45%">
<td width="50%">Pedro São Paulino</td>
<td width="50%">24</td>
</tr>
</table>
</body>
</html>