-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!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">
<script defer src="game.js"></script>
<title>Dev Knight Adventure</title>
</head>
<body>
<nav class="navbar">
<div class="navbar-items">
<a class="btn btn-navbar" href="index.html">Start</a>
<span role="timer" id="time"></span>
</div>
</nav>
<main class="container">
<h1 class="header">
<img class="icon" src="exe.gif" role="img" alt="icon of a window">
Dev Knight Adventure
</h1>
<div class="content">
<article id="text" role="article">TEXT</article>
<div id="option-buttons" class="btn-grid">
<a class="btn" role="option">Option 1</a>
<a class="btn" role="option">Option 2</a>
<a class="btn" role="option">Option 3</a>
<a class="btn" role="option">Option 4</a>
</div>
</div>
</main>
<footer>
<span>
Created by <a href="https://github.com/Agathebadia" target="_blank">Agathe Badia</a>
</span>
</footer>
</body>
</html>