<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Bestill kveldsmat</h1>
<form id="skjemaKveldsmat">
<label>Hva vil du ha?</label>
<input type="text" id="inpMat" required placeholder="Brød med gulost">
<label>Hvor mange?</label>
<input type="number" id="inpAntall" required placeholder="4">
<button type="submit" class="button">Send inn din bestilling</button>
</form>
<h2 id="info">Her vises din bestilling</h2>
<script src="./index.js"></script>
</body>
</html>