Vježba 13

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Vježba 13

HTML dokument

<html>

<head>

<link rel="stylesheet" type="text/css" href="stil.css">

<title>Vertikalna navigacija</title>

</head>

<body>

<ul>

<li><a href="vijesti.html" target="_blank">Vijesti</a></li>

<li><a href="sport.html" target="_blank">Sport</a></li>

<li><a href="zabava.html" target="_blank">Zabava</a></li>

<li><a href="kontakt.html" target="_blank">Kontakt</a></li>

</ul>

</body>

</html>

CSS fajl

*{

padding:0;

margin:0;

ul{

list-style-type:none;

width:20vw;

height:100%;

background-color:black;

text-align:center;

ul li{
display:block;

padding:30px;

line-height:50px;

ul li a{

color:white;

text-decoration:none;

font-family:"Times New Roman";

font-size:25px;

ul li:hover{

background-color:red;

You might also like