Ga naar hoofdinhoud

Het resultaat

Na alle stappen ziet je index.html er zo uit:

<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mijn eerste website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Hallo wereld!</h1>
<p>Dit is mijn eerste website.</p>
<button id="mijnKnop">Klik hier</button>
<script src="script.js"></script>
</body>
</html>

En je projectmap ziet er zo uit:

mijn-website/
├── index.html
├── style.css
└── script.js