H
Henchen
Tänkte försöka lära mig detta, och läser lite på webdesignskolan.. Men jag förstår ändå inte riktigt, är det nån vänlig själ som kan förklara grunderna??
Follow along with the video below to see how to install our site as a web app on your home screen.
OBS: This feature may not be available in some browsers.
<[COLOR="Blue"]ul[/COLOR]>
<[COLOR="Red"]li[/COLOR]><a href="#">Hem</a></[COLOR="Red"]li[/COLOR]>
<[COLOR="Red"]li[/COLOR]><a href="#">Om oss</a></[COLOR="Red"]li[/COLOR]>
<[COLOR="Red"]li[/COLOR]><a href="#">Produkter</a></[COLOR="Red"]li[/COLOR]>
</[COLOR="Blue"]ul[/COLOR]>
body {
font-family:sans-serif;
font-size:11px;
color:#950;
}
#container {
width:616px;
margin:0 auto;
}
[COLOR="Blue"][B]ul[/B][/COLOR] {
padding:10px;
text-align:center;
}
[COLOR="Red"][B]li[/B][/COLOR] {
display:inline;
margin:0;
border:1px solid #ecc;
padding:10px 0;
background:#fee;
}
li a {
text-decoration:none;
color:#a00;
padding:0 80px;
}
[COLOR="DimGray"]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title>Layout med CSS</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />[/COLOR]
[B][COLOR="DarkRed"]<link rel="stylesheet" type="text/css" href="style.css"/>[/COLOR][/B][COLOR="DimGray"]
</head>
<body>
<div id="container">
<ul>
<li><a href="#">Hem</a></li>
<li><a href="#">Om oss</a></li>
<li><a href="#">Produkter</a></li>
</ul>
<p>Lite text...</p>
</div>
</body>
</html>[/COLOR]