Član
- Učlanjen(a)
- 31.03.2010
- Poruka
- 38
Ljudi kako da napravim za preko CSS web stranicu od 3 strane?
Ako bi bio neko ljubazan?
Ako bi bio neko ljubazan?
Follow along with the video below to see how to install our site as a web app on your home screen.
Beleška: this_feature_currently_requires_accessing_site_using_safari
body {background:#999; color;#000;}
a {color:#000;}
#početna {position:absolute;}
#glavni-meni {margin-left: 250px; padding-top: 10px; padding-bottom: 10px; border: 1px solid #999; border-radius: 3px; text-decoration: none; text-transform:uppercase;}
.sreda {text-align:left;margin-left: 250px; padding: 10px; background: #FFF; margin-right: 250px}
<!DOCTYPE html>
<html>
<head>
<title>Početna stranica</title>
<link media="screen" href="naslovnica.css" type="text/css" rel="stylesheet" />
</head>
<body>
<!--Početak stranice-->
<div id="pocetna">
<div id="glavni-meni">
<a href="index.html">Naslovnica</a>
<a href="2.html">Stranica 1</a>
<a href="3.html"> Stranica 2</a>
</div>
<div class="sreda">
NEKI TEKST!
</div>
</div>
<!--Kraj:početak stranice-->
</body>
</html>