Korzystanie z arkusza stylów CSS

Zmień to:

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

Do tego:

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

Aby użyć arkusza stylów, musisz dodać klasę do elementów HTML, które chcesz stylizować:

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

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

Kliknij przycisk „Wypróbuj sam”, aby zobaczyć, jak to działa!

Spróbuj zmienić kolor tła pojemnika z turkusowego na czarny.

Zrobiłeś to?

Gratulacje!

Właśnie poznałeś podstawy korzystania z arkusza stylów.

Czytaj dalej!


Jak być responsywnym

Imię1
imię2
Imię3

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

Jak stworzyć kartę

Gotowy na coś naprawdę zaawansowanego?

Co powiesz na wizytówkę w HTML?

Zawiera zarówno obraz, jak i tekst.

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>