Ejemplos HTML

Ejemplo 1

Ejemplo de elementos HTML

Código HTML
								
									<!-- Elementos e imagen -->
									<html lang="es">
										<head>
											<meta charset="UTF-8">
										</head>
											<body>
											
												<header>
													<h1></h1>
													<link rel="stylesheet" href="mi_estilo.css">
												</header>
												
												<nav>
													<ul>
														<li></li>
														<li></li>
													</ul>
												</nav>
												
												<section>
													
													<figure>
														<img src="imagen.jpg" alt="Texto alternativo">
													</figure>
													
													<article>
														<p id="articulo"></p>
													</article>	
												</section>
												
												<aside>
													<p id="aside"></p>
												</aside>
												
												<footer>
													
												</footer>
										</body>
									</html>