HTML - ayuda con el diseño de este código html

 
Vista:
Imágen de perfil de Caro
Val: 6
Ha disminuido su posición en 7 puestos en HTML (en relación al último mes)
Gráfica de HTML

ayuda con el diseño de este código html

Publicado por Caro (1 intervención) el 20/06/2017 17:52:25
Quiero que mi codigo html quede como en el de la imagen alguien me ayuda??

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
<html>
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
		<link rel="stylesheet" href="css/palindromo.css">
	</head>
 
	<body>
		<div class="palindromo">
			<form action="palindromo.php" method="post">
				<h1>Palabras Primos </h1>
				<table>Verificador Palindromo</p>
					<tr>
						<td>Palabra: </td>
						<td><input type="text" name="Palabra"/></td>
					</tr>
					<tr>
					</tr>
					<tr>
						<td><input type="submit" value="Enviar"  class="btn-enviar"></td>
					</tr>
				</table>
			</form>
		</div>
	</body>
</html>
html
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de Lopez
Val: 886
Plata
Ha mantenido su posición en HTML (en relación al último mes)
Gráfica de HTML

ayuda con el diseño de este código html

Publicado por Lopez (271 intervenciones) el 01/07/2017 15:11:56
Hola Caro,

Es importante conozcas un poquito de HTML. Hará tu código mas breve y facil de leer ;)
https://www.w3schools.com/tags/tag_fieldset.asp

Espero no haber aparecido demasiado tarde con la ayuda.
Atento a tu respuesta me despido.


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
<html>
 
	<head>
 
		<meta charset="UTF-8">
 
		<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
 
		<link rel="stylesheet" href="css/palindromo.css">
        <style>
		.palindromo{ max-width:12em; margin:4em auto;}
 
		</style>
 
	</head>
 
 
 
	<body>
    <div  class="palindromo"><!-- OPCION -->
 
    <form action="palindromo.php" method="post">
    Palabras Primos
  <fieldset>
    <legend>Verificador Palindromo:</legend>
    Palabra: <input type="text" name="Palabra"/><br />
    <input type="submit" value="Enviar"  class="btn-enviar">
  </fieldset>
</form>
 
</div><!-- OPCION -->
 
		<div class="palindromo">
 
			<form action="palindromo.php" method="post">
 
				<h1>Palabras Primos </h1>
 
				<table>Verificador Palindromo</p>
 
					<tr>
 
						<td>Palabra: </td>
 
						<td><input type="text" name="Palabra"/></td>
 
					</tr>
 
					<tr>
 
					</tr>
 
					<tr>
 
						<td><input type="submit" value="Enviar"  class="btn-enviar"></td>
 
					</tr>
 
				</table>
 
			</form>
 
		</div>
 
	</body>
 
</html>
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar