<!DOCTYPE html>
<html>
<head>
<title>Navigation bar in html and css</title>
<link rel = "stylesheet" type = "text/css" href = "css/style.css>
</head>
<body>
<nav>
<a href = "#">Home</a>
<a href = "#">Services</a>
<a href = "#">Portfolio</a>
<a href = "#">About</a>
<a href = "#">Contact</a>
</nav>
</body>
</html>
* {
margin : 0;
padding : 0;
font-family : verdana;
}
nav{
width : 100%;
height : 70px;
background-color: red;
}
The background-color is set to red but when viewed in browser the background-color does not appear red would like to know where i've gone wrong.
Aucun commentaire:
Enregistrer un commentaire