-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtroubleshooter.html
54 lines (51 loc) · 1.67 KB
/
troubleshooter.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
<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">
<title>Luna on the Run</title>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://kit.fontawesome.com/b0f29e9bfe.js" crossorigin="anonymous"></script>
<script src="troubleshooter.js"></script>
<link rel="stylesheet" type="text/css" href="troubleshooter.css" media="screen" />
</head>
<body id="body">
<!-- Previous Button -->
<button id="prev-btn">
<i class="fas fa-arrow-circle-left"></i>
</button>
<!-- Book -->
<div id="book" class="book">
<!-- Paper 1 -->
<div id="p1" class="paper">
<div class="front">
</select>
<div id="f1" class="front-content">
<img src="front.png"/>
</div>
</div>
<div class="back">
<div id="page1" class="back-content">
<p>1</p>
</div>
<div class="loadbearing">loadbearing</div>
</div>
</div>
<!-- Paper 2 -->
<div id="p2" class="paper">
<div class="front">
<div id="page2" class="front-content">
<p>2</p>
</div>
</div>
<div class="back">
<div id="page3" class="back-content">
<p>3</p>
</div>
</div>
</div>
</div>
<!-- Next Button -->
<button id="next-btn">
<i class="fas fa-arrow-circle-right"></i>
</button>
</body>