Før musen over boksene
⇓⇓⇓
DomainWant to register an Norwegian domain?
WebdesignWe have designed hundreds of websites.
Nice pricing!
WebshopWebshop for selling products in Norway
CMSCMS with Norwegian administration
CSS design
CSS (Cascading Style Sheets) is the new technique for displaying html elements.
It produces much less html kode and making the page loading faster. The profit is also a higher rank in the search engines;
less kode makes it easyer to get the content.
If you want to redesign your site later, changing the css file also changes all your pages simultaniously.
To display a table based webpage, the browser must render all the content.
With css all elements render simultaniously and the page shows as it loads.
Combine css with javascript and you have powerful dhtml for making interactivity, as in flash.
CSS example:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<head><title>CSS design example</TITLE>
<link rel="stylesheet" type="text/css" href="css-design.css"></head>
<body>
<div id="top">Top here</div>
<div id="content">
<ul>
<li><a href="#">Menu item 1</a></li>
<li><a href="#">Menu item 2</a></li>
</ul>
<div id="text">Here goes the page content!!</div>
</div>
</body></html>