-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (19 loc) · 734 Bytes
/
index.html
File metadata and controls
21 lines (19 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!--Indicamos qué versión de HTML estamos usando-->
<!DOCTYPE html>
<html>
<head>
<!--Indicamos que queremos que nuestra página web acepte términos especiales-->
<meta charset="utf-8">
<title>Banderas Display</title>
<!--"linkeamos" nuestro archivo html con nuestro archivo css-->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--Creamos un atributo en cada encabezado, para luego poder identificar, agruparlos y modificar su estilo-->
<h4 id="bandera1">Laboratoria</h4>
<h4 id="bandera2">es</h4>
<h4 id="bandera3">TRANSFORMACIÓN</h4>
<!--Vinculamos nuestro archivo js con el archivo html-->
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>