Usar una hoja de estilo CSS

Cambia esto:

<link rel="stylesheet" href="">

A esto:

<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">

Para usar la hoja de estilo, debe agregar una clase a los elementos HTML que desea diseñar:

<div class="w3-container w3-black">

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

</div>

Esqueleto HTML / CSS

<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<title>Page Title</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
</style>
<script src=""></script>
<body>

<img src="img_la.jpg" alt="LA" style="width:100%">

<div class="w3-container w3-black">
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</div>

</body>
</html>

Haga clic en el botón "Pruébelo usted mismo" para ver cómo funciona.

Intente cambiar el color de fondo del contenedor de verde azulado a negro.

¿Tú lo hiciste?

¡Felicidades!

Acaba de aprender los conceptos básicos del uso de una hoja de estilo.

¡Sigue leyendo!


Cómo ser receptivo

Nombre1
nombre2
Nombre3

código HTML

<div class="w3-row">

<div class="w3-third">
<img src="img_avatar.png" alt="Name1" style="width:100%">
</div>

<div class="w3-third">
<img src="img_avatar.png" alt="Name2" style="width:100%">
</div>

<div class="w3-third">
<img src="img_avatar.png" alt="Name3" style="width:100%">
</div>

</div>

Cómo crear una tarjeta

¿Listo para algo realmente avanzado?

¿Qué tal una tarjeta de visita en HTML?

Incluyendo imagen y texto.

Play with the code below for a while, until you think you got a grip on it.

After that, we will start coding really fantastic HTML pages.

John Doe

Engineer

HTML Code

<div class="w3-card" style="width:200px">
  <img src="img_avatar.png" style="width:100%">
  <div class="w3-container w3-center">
    <p class="w3-xlarge">John Doe</p>
    <p>Engineer</p>
  </div>
</div>