-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (43 loc) · 1.44 KB
/
index.html
File metadata and controls
44 lines (43 loc) · 1.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cramer's Supremacy</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>Cramer's Supremacy</header>
<main>
<div class="equations">
<div class="eqn">
<input type="number" value="1" /><span>x</span>
<input type="number" value="2" /><span>y</span>
<input type="number" value="3" /><span>z</span>
<span class="equals">=</span>
<input type="number" value="4" />
</div>
<div class="eqn">
<input type="number" value="5" /><span>x</span>
<input type="number" value="6" /><span>x</span>
<input type="number" value="7" /><span>z</span>
<span class="equals">=</span>
<input type="number" value="8" />
</div>
<div class="eqn">
<input type="number" value="9" /><span>x</span>
<input type="number" value="10" /><span>y</span>
<input type="number" value="11" /><span>z</span>
<span class="equals">=</span>
<input type="number" value="12" />
</div>
</div>
<button class="calc-btn">Calculate</button>
</main>
<div class="solution">
<div class="bg"></div>
<div class="content">Solution:</div>
</div>
<script src="src/index.js"></script>
</body>
</html>