como hacer tablas en html

Solutions on MaxInterview for como hacer tablas en html by the best coders in the world

showing results for - "como hacer tablas en html"
Ricky
25 Jan 2021
1<!DOCTYPE html>
2<html>
3    <head>
4        <title>Primera pagina web en visual studios code</title>
5        <meta charset="utf-8">
6        <link rel="stylesheet" type="text/css" href="estiloo.css"> 
7    </head>
8    <body>
9        
10         <h1>Primera pagina web en Visual Studios Code</h1>
11         <h2>Subtitulo</h2>
12         <p>Lorem ipsum dolor sit,<b> amet consectetur adipisicing elit. Consequatur cum incidunt in quis?</b> Illo eaque aspernatur autem, amet magnam omnis beatae porro natus distinctio voluptate, quaerat veniam tenetur. Possimus, aut.</p>
13         <i>italic</i>
14         <small>pequeño</small>
15         <b>negrita</b>
16         <ul>
17             <li>
18                 punto uno
19             </li>
20             <li>
21                 punto dos
22             </li>
23         </ul>
24         <ol>
25             <li>
26                 punto enumerado uno
27             </li>
28             <li>
29                punto enumerado dos
30            </li>
31         </ol>
32         <button>boton de prueba</button>
33    </body>
34</html>