scrimba
Bruke et skjema uten å hoppe til en ny nettside v3
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Bruke et skjema uten å hoppe til en ny nettside v3
AboutCommentsNotes
Bruke et skjema uten å hoppe til en ny nettside v3
Expand for more info
index.html
run
preview
console
<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>
Console
index.html
-3:56