-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 988 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XYandZ</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Brainstorming your way through products</h1>
<button id="newChallenge">New Challenge</button>
</header>
<main>
<section id="current-challenge">
<h2>Current Challenge</h2>
<p>
<span class="lockBtn" id="lockProduct">🔓</span>
<span id="productDisplay"></span>
</p>
<p>
<span class="lockBtn" id="lockSolution">🔓</span>
<span id="solutionDisplay"></span>
</p>
</section>
</main>
</div>
<script src="script.js"></script>
</body>
</html>