wu2-prov-js-template-2/index.html
2024-05-14 13:30:03 +02:00

65 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Prov WU-2</title>
<link rel="stylesheet" href="css/style.css?v=2.1">
<link rel="shortcut icon" type="image/png" href="img/favicon.png">
<script src="js/script.js"></script>
</head>
<body>
<header>
<img src="img/js-logo.svg" alt="js logo">
<h1 id="h1-1">Prov i JavaScript</h1>
<h2 id="h2-1">Version 2</h2>
<nav>
<a id="menuBtn" href="#" id="menuBtn">☰ MENY</a>
<ul>
<li><a href="#">Hem</a></li>
<li>Sida 1</li>
<li>Sida 2</li>
<li>Sida 3</li>
<li>Sida 4</li>
<li>Sida 5</li>
<li>Sida 6</li>
<li>Om</li>
</ul>
</nav>
</header>
<main>
<section id="sec-1">
<h2>Detta om detta</h2>
<h3>Ta bort</h3>
<p>Jan</p>
<p>Jansson</p>
<p>Lisa</p>
<p>Olsson</p>
<p>Eva</p>
</section>
<section id="sec-2">
<h2>Mer om detta</h2>
<img src="img/henrik.png" width="150" alt="Bild på Henrik Bygren">
<p>Gå till <a href="http://dn.se">DN</a> och titta.</p>
</section>
<section id="country">
<h2>Viktiga städer i Sverige</h2>
</section>
<section id="calc">
<h3>Klassisk räknare</h3>
<fieldset>
<legend>Ändra med 1</legend>
<button id="dec">-</button><output id="resCalc">0</output><button id="inc">+</button>
</fieldset>
</section>
</main>
<footer>
<section>Uppgift att lösa!</section>
</footer>
</body>
</html>