Files
advent-of-code/index.html

18 lines
526 B
HTML
Raw Normal View History

2022-12-04 18:24:26 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>Assignment:</p>
<textarea rows="15" cols="50" id="assignment"></textarea>
2022-12-06 17:26:38 +01:00
<input type="checkbox" id="algorithm" />
<label for="algorithm">Search for message marker?</label>
2022-12-04 18:24:26 +01:00
<p>Answer:</p>
<div id="answer">Provide input first</div>
<script src="script.js"></script>
</body>
</html>