-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabela_lista_CSS_21-03.html
106 lines (92 loc) · 2.81 KB
/
tabela_lista_CSS_21-03.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
103
104
105
106
<!DOCTYPE html">
<html LANG="pt br">
<head>
<meta charset="UTF-8">
<title>Tabela</title>
<style>
body{
background-image: -moz-linear-gradient(to bottom, blue,green,red);
}
h1{
color: blueviolet;
font-size: 250%;
text-align: center
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h2{
color: red;
Font-size: 250%;
text-align: center;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h3{
color: burlywood;
font-size: 250%
text-align: center;
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
h4{
color:azure;
font-size: 250%;
text-align: center;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
li{
color: brown;
}
table{
background-color: darkturquoise;
border: 5px burlywood;
width: 300px
height: 300px;
}
footer{
color:aqua;
font-size: 30px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-align: center;
}
</style>
</head>
<body>
<h1>Listas e Tabelas com CSS interno</h1>
<h2>Lista não-ordenada</h2>
<ul>
<li>HTTP</li>
<li>FTP</li>
<li>HTTPs</li>
<li>TCP/IṔ</li>
</ul>
<h3>Lista ordenada</h3>
<ol>
<li>HTTP</li>
<li>FTP</li>
<li>HTTPs</li>
<li>TCP/IṔ</li>
</ol>
<h4>Tabela</h4>
<table border=1>
<tr>
<td>Aluno</td>
<td>Número</td>
<td>Série</td>
<td>Prova</td>
<td>Nota</td>
</tr>
<tr>
<td>Miguel</td>
<td>15</td>
<td>3°A</td>
<td>História</td>
<td>9.8</td>
</tr>
<tr>
<td>Paulo</td>
<td>22</td>
<td>2°A</td>
<td>Matemática</td>
<td>8.0</td>
</tr>
</table>
</body>
</html>