18 lines
537 B
HTML
18 lines
537 B
HTML
|
<!doctype html5>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Box</title>
|
||
|
</head>
|
||
|
<link rel="stylesheet" href="css/stylesheet.css" />
|
||
|
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap" rel="stylesheet">
|
||
|
<body>
|
||
|
<script src="js/script.js"></script>
|
||
|
<div id="container" style="opacity:0">
|
||
|
<div id="box">
|
||
|
<div id="text">
|
||
|
Tryk E for at åbne garagen.
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|