startit/MVC/MVC_quizz.html

32 lines
723 B
HTML
Raw Normal View History

2024-08-27 13:11:59 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Model View Controller</title>
<style>
</style>
</head>
<body>
<div id="app"></div>
<script>
// Model
let questionIndex = 0;
let points = 0;
// view
updateView();
function updateView(){
let question;
if (questionIndex == 0) question = "Hva er 2 + 2 ?"
document.getElementById('app').innerHTML = /*HTML*/ `
<h1></h1>
Poeng: ${points}<br>
<input type="text">
`;
};
</script>
</body>
</html>