-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreferencias.html
147 lines (131 loc) · 3.37 KB
/
preferencias.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>Proyecto final HTML</title>
<style>
body {
font-family: "Lucida Console", "Courier New", monospace;
background: linear-gradient(to right, rgb(189, 189, 255), rgb(255, 233, 236));
padding: 0;
margin: 0;
}
.container{
display: flex;
justify-content: center;
}
header {
text-align: center;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: #92a4ff;
}
h1 {
background-color: black;
padding: 10px;
margin: 0;
color: #92a4ff;
}
table {
border-collapse: collapse;
border: 2px solid rgb(200, 200, 200);
letter-spacing: 1px;
font-size: 1.5rem;
background-color: #FFF;
}
td {
border: 1px solid rgb(190, 190, 190);
padding: 10px 20px;
}
th {
border: 1px solid rgb(190, 190, 190);
padding: 10px 20px;
background-color: rgb(162, 162, 162);
}
.footer {
background-color: #333;
color: #FFF;
padding: 10px;
text-align: center;
clear: both;
}
</style>
</head>
<body>
<header>
<h1>Pipo el gato</h1>
<nav>
<ul>
<li><a href="index.html"> Home</a></li>
<li><a class="active" href="preferencias.html"> Preferencias</a></li>
<li><a href="audiovisuales.html"> Audiovisuales</a></li>
<li><a href="contacto.html"> Contacto</a></li>
</ul>
</nav>
</header>
<h2 style="margin: 15px;">Preferencias de Pipo:</h2>
<hr>
<div class="container">
<table>
<colgroup>
<col style="background-color:#aaa8a8;">
<col>
<col>
<col>
<col>
</colgroup>
<th></th>
<th>Prefiere:</th>
<th>No le gusta:</th>
<tr>
<td>Alimento</td>
<td>CatChow</td>
<td>Generico</td>
</tr>
<tr>
<td>Jueguete</td>
<td>Ratón</td>
<td>Pelota</td>
</tr>
<tr>
<td>Baño</td>
<td>Piedritas</td>
<td>Nada</td>
</tr>
<tr>
<td>Aseo</td>
<td>Tierra</td>
<td>Agua</td>
</tr>
<tr>
<td>Estres</td>
<td>Rascador</td>
<td>Collar</td>
</tr>
</table>
</div>
<footer class="footer">Derechos reservados © 2023</footer>
</body>
</html>