-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsurfaces.html
More file actions
35 lines (27 loc) · 1.02 KB
/
surfaces.html
File metadata and controls
35 lines (27 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>surfaces</title>
<link rel="icon" href="images/icon.ico">
<link rel="stylesheet" href="styles.css">
<script src="surfaceScript.js"></script>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap" rel="stylesheet">
</head>
<body>
<div class="column"><a href="index.html"><button class="navbutton"><</button></a></div>
<div class="row">
<button id="col1" style="background-color: #333;" onclick="toggleCols(1)">1</button>
<button id="col2" style="background-color: #ddd;" onclick="toggleCols(2)">2</button>
<button id="col3" style="background-color: #333;" onclick="toggleCols(3)">3</button>
</div>
<section id="resSection">
</section>
<script>
makeScanSections([false, true, false]);
</script>
</body>
</html>