Usando uma folha de estilo CSS

Mude isso:

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

Para isso:

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

Para usar a folha de estilo, você deve adicionar uma classe aos elementos HTML que deseja estilizar:

<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>

Clique no botão "Experimente você mesmo" para ver como funciona!

Tente alterar a cor de fundo do contêiner de verde-azulado para preto.

Você fez isso?

Parabéns!

Você acabou de aprender o básico sobre como usar uma folha de estilo.

Continue lendo!


Como ser responsivo

Nome1
nome2
Nome3

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>

Como criar um cartão

Pronto para algo realmente avançado?

Que tal um Cartão de Visita em HTML?

Incluindo imagem e 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>