-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 842 Bytes
/
index.html
File metadata and controls
36 lines (32 loc) · 842 Bytes
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
<html>
<head>
<!--
HTML COMMENT
En esta seccion se definen comentarios de typo html. Se usa el tag <-- de apertura y cierre respectivamente
Para probar solo abre html file en el browser.
-->
<title>First website</title>
<style type="text/css">
/*
Styling Section
*/
</style>
<script type="text/javascript">
/*
Script Section
*/
</script>
</head>
<body>
<h1>ELEMENTO DE CABECERA</h1>
<p>
Elemento de parrafo.
</p>
<div>
Elemento para dividir modularmente un sitio.
</div>
<section>
Elemento para modular sitio.
</section>
</body>
</html>