0% found this document useful (0 votes)
8 views2 pages

Uvod Primjeri

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views2 pages

Uvod Primjeri

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

HTML DOKUMENT

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="izgled.css">
</head>
<body>
<h1>Glavni naslov</h1>
<h2>Podnaslov</h2>
<p>Neki tekst u odlomku</p>
<div class="plavi">
<h1>TEKST</h1>
</div>
<div class="rozi">
<h2>Deserti:</h2>
<ul>
<li>Tiramisu</li>
<li>Palačinke</li>
<li>Sladoled</li>
</ul>
</div>
<img src="slika.jpg" alt="Priroda" height="300"
width="500">
</body>
</html>
CSS DOKUMENT

h1{
color: rgb(84, 25, 92);
font-family: Arial, Helvetica, sans-serif;
font-size: 50px;
}
.plavi{
background-color: aqua;
height: 300px;
width: 400px;
}
.rozi{
background-color: rgb(185, 106, 175);
height: 200px;
width: 200px;
}
h2{
color: cadetblue;
font-style: italic;
}

You might also like