-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 2.46 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
title: Math App Prototype
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/styles.css">
<title>{{page.title}}</title>
</head>
<body>
<div class="container-grid">
<header class="title flex-row center">
<h1 class="title-text">Math App Prototype</h1>
</header>
<main class="equation-grid">
<fieldset class="app-wrapper flex-column gap">
<label class="sub-heading" for="addition">Add the two numbers together</label>
<div class="num1 six-col-grid num-grid gap">
<input id="helper-hundreds" type="number" class="small tens-input" tabindex="2" disabled>
<div class="number-wrapper flex-row center tens large">
<p id="top-tens" class="num-height num-width"></p>
</div>
<input id="helper-tens" type="number" class="small digits-input" tabindex="2" disabled>
<div class="number-wrapper flex-row center digits large">
<p id="top-ones" class="num-height num-width"></p>
</div>
</div>
<div class="num2 six-col-grid gap">
<div class="number-wrapper flex-row center plus">
<p class="num-height num-width">+</p>
</div>
<div id="bottom-tens" class="number-wrapper flex-row center tens">
<p class="num-height num-width"></p>
</div>
<div id="bottom-ones" class="number-wrapper flex-row center digits">
<p class="num-height num-width"></p>
</div>
</div>
<div class="user-input six-col-grid gap">
<input id="hundreds" class="plus input-width" type="number" tabindex="5" disabled/>
<input id="tens" class="tens input-width" type="number" tabindex="3" disabled/>
<input id="ones" class="digits input-width" type="number" tabindex="1" />
</div>
</fieldset>
</main>
</div>
<script src="./assets/js/generator.js" type="module"></script>
<script src="./assets/js/inputCapture.js" type="module"></script>
</body>
</html>