-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
25 lines (25 loc) · 892 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Truthy or Falsy?</title>
<link href="/favicon.ico?v=1" rel="shortcut icon" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton-framework/1.1.1/skeleton.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<header>
<h1>Truthy or Falsy?</h1>
</header>
<div class="card">
<p>Is <code id="question-area"></code> truthy or falsy?</p>
<button type="button" id="truthy-button">Truthy</button>
<button type="button" id="falsy-button">Falsy</button>
<p id="answer-area"></p>
</div>
<button class="button-primary" id="next-button">Next Question</button>
</div>
<script src="script.js"></script>
</body>
</html>