22 lines
570 B
HTML
22 lines
570 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>Petersilie Shop</title>
|
||
|
<link href="templates/index.css" rel="stylesheet">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="wrapper">
|
||
|
<img src="resources/petersilie_banner.png">
|
||
|
<h1 class="title" style='font-size: 25px; color:#ffff00;'>Header info 1</h1>
|
||
|
<h2 class="title" style='font-size: 15px; color:#00ff00;'>Header info 2</h2>
|
||
|
<h3 class="title" style='font-size: 10px; color:#0000ff;'>Header info 3</h3>
|
||
|
</div>
|
||
|
|
||
|
<nav>
|
||
|
<! --this part works fine so code omitted -->
|
||
|
</nav>
|
||
|
</body>
|
||
|
|
||
|
</html>
|