Instructor: Ricardo Velasco
Cofundador
Mejor conocido como Talo
Diseño Gráfico USAC
+ 7 años en digital
Cofounder Waravä
@talo242 en toda la web
talo242@gmail.com
HMTL
Información
CSS
Estilos
Javascript
Interacción
(Hyper Text Markup Language)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mi primer sitio web</title>
</head>
<body>
<h1>¡Hola! Este es mi primer sitio web.</h1>
</body>
</html>
(Document Object Model)
Tomada de: https://www.w3schools.com/js/js_htmldom.asp
<head></head>
<body></body>
<footer></footer>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
...
<h6>Heading 6</h6>
<p>paragraph</p>
<a href="https://www.google.com">Ir a google</a>
<a href="https://www.google.com">Ir al google actual</a>
Tag
Atributo
Hijo/Contenido
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mi primer sitio web</title>
</head>
<body>
<!-- Este es un comentario -->
<section>
<h1>Esta es la primera sección de mi sitio web</h1>
</section>
<section>
<h1>Esta es la segunda sección de mi sitio web</h1>
</section>
</body>
</html>
<div class="contenedor-1">
<h1>Esta es la primera sección de mi sitio web</h1>
<div class="contenedor-interior">
<p>Este es un párrafo</p>
</div> <!-- contenedor-interior -->
</div> <!-- contenedor-1 -->
<div class="contenedor-2">
<h1>Esta es la segunda sección de mi sitio web</h1>
</div> <!-- contenedor-2 -->
<b> Bold text </b>
<strong> Important text </strong>
<i> Italic text </i>
<em> Emphasized text </em>
<mark> Marked text </mark>
<small> Small text </small>
<del> Deleted text </del>
<ins> Inserted text </ins>
<sub> Subscript text </sub>
<sup> Superscript text </sup>
<h1 id="title">Esta es la primera sección de mi sitio web</h1>
<p class="section__paragraph">
Esta es el primer párrafo de mi sitio web
</p>
<p class="section__paragraph">
Esta es el segundo párrafo de mi sitio web
</p>
<p class="section__paragraph" id="important-paragraph">
Esta es el tercer párrafo de mi sitio web
</p>
id: Identificador único
class: Puede estar en varios elementos
(Cascading styles sheets)
#id {
background-color: blue;
}
.clase {
background-color: green;
}
div {
background-color: red;
}
#id {
background-color: blue;
}
.clase {
background-color: green;
}
div {
background-color: red;
}
p.green {
color: green;
}
.clase1.clase2 {
font-weight: bold;
}
.clase1 .clase2 {
font-weight: lighter;
}
div p {
font-size: 32px;
}
#id {
background-color: blue;
}
.clase {
background-color: green;
}
div {
background-color: red;
}
<a> tag
<em> tag
<img> tag
Heading tags <h1> to <h6>
List tags <ol> , <ul> ,<dl> , <li>
Pre-formatted text <pre>
Blockquote <blockquote>