Ayuda con menú "fixed" sin css
Publicado por Marcos Sánchez (1 intervención) el 23/10/2019 00:34:58
He tratado de hacer un menu con tablas y que esté entre en fixed pero al momento de agregar el texto, la tabla se va por debajo completamente. Es dificultoso ya que no puedo usar más allá del lenguaje 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
<html>
<Head><title> Halloween </title>
</head>
<bgsound src="154 Giant's theme.mp3" loop="infinite" delay="10"></bgsound>
<body>
<div style="position:fixed; width:100%;">
<div style="position:fixed; width:100%;">
<table stlye="text-align: left; width:100%;position:fixed; margin-left:auto; margin-right: auto;"border="3" ;cellpadding="2"; cellspacing="2">
<th colspan="6" rowspan="1"
style="vertical-align: top; width: 100%; height: 80px; background-color: rgb(0, 0, 0);position: top absolute;"><font size="+2"><span style="font-weight: bold;"><img src="terrorween.png">
</span></font><br>
</th>
<tr style="background-color: rgb(0, 0, 0);">
<td colspan="1" rowspan="1"
<td style=" text align: center;color: rgb(231,103,0); width:18%;position: top absolute;"><font size="+2"><span style="font-weight: bold;">Inicio</span></font></td>
<td style=" text align: center;color: rgb(231,103,0); width:18%;position: top-absolute;"><font size="+2"><span style="font-weight: bold;">¿Que es el halloween?</span></font></td>
<td style=" text align: center;color: rgb(231,103,0); width:18%;position: top-absolute;"><font size="+2"><span style="font-weight: bold;">Creepypastas</span></font></td>
<td style=" text align: center;color: rgb(231,103,0); width:18%;position: top-absolute;"><font size="+2"><span style="font-weight: bold;">Leyendas</span></font></td>
<td style=" text align: center;color: rgb(231,103,0); width:18%;position: top-absolute;"><font size="+2"><span style="font-weight: bold;">Recomendaciones</span></font></td>
<td style=" text align: center;color: rgb(231,103,0); width:18%;position: top-absolute;"><font size="+2"><span style="font-weight: bold;">Contacto</span></font></td>
</tr>
</div>
</body>
</html>
Valora esta pregunta


0