-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (21 loc) · 933 Bytes
/
index.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>SEW.P0</title>
<!-- añadir el elemento link de enlace a la hoja de estilo dentro del <head> del documento html -->
<link rel="stylesheet" type="text/css" href="estilo.css" />
</head>
<body>
<!-- Datos con el contenidos que aparece en el navegador -->
<h1>Primer sitio web</h1>
<p>¡Hola Mundo! Soy Alvaro Davila y este es el primer sitio web adaptable y accesible desarrollado cumpliendo los estándares HTML5, CSS3. </p>
<!-- la carpeta de recursos gráficos "images" debe estar en el misma carpeta del archivo -->
<!-- anadir la sección footer dentro del body despues del párrafo -->
<footer>
<img src="images/HTML5.png" alt=" HTML5 Válido!" />
<img src="images/CSS3.png" alt="CSS Válido!" />
</footer>
</body>
</html>