-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (82 loc) · 3.14 KB
/
index.html
File metadata and controls
84 lines (82 loc) · 3.14 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles/home.css">
<title>Prismarine Viewer</title>
</head>
<body>
<header>
<img class="torch" src="assets/torch.gif"/>
<img class="main-logo" src="assets/Sample.png"/>
<img class="torch" src="assets/torch.gif"/>
</header>
<main>
<section id="players" class="players">
<label>
<input id="choice" name="choice" value="http://ec2-3-138-151-182.us-east-2.compute.amazonaws.com:3000" type="radio" display="none" checked />
<img src="assets/player1.png" width="200px" alt="player 1">
</label>
<label>
<input id="choice2" name="choice" value="http://ec2-3-138-151-182.us-east-2.compute.amazonaws.com:3001" type="radio" display="none" />
<img src="assets/player2.png" width="200px" alt="player 2">
</label>
</section>
<section>
<iframe id="viewer" class="viewer" src="" target="_parent">
</iframe>
</section>
</main>
<footer>
<span>
<div class="gitabove inblock">
Sam Formichella
<div class="git inblock">
<a href="https://github.com/sformichella">
<img src="assets/github.png" alt='github'/>
</a>
<a href="https://www.linkedin.com/in/sam-formichella/">
<img src="assets/linkedin.png" alt='linkedin'/>
</a>
</div>
</div>
<div class="gitabove inblock">
Ryan Carreras
<div class="git inblock">
<a href="https://github.com/ryanleviathan">
<img src="assets/github.png" alt='github'/>
</a>
<a href="https://www.linkedin.com/in/ryancarreras/">
<img src="assets/linkedin.png" alt='linkedin'/>
</a>
</div>
</div>
<div class="gitabove inblock">
Donny Vu
<div class="git inblock">
<a href="https://github.com/DonnyLVu">
<img src="assets/github.png" alt='github'/>
</a>
<a href="https://www.linkedin.com/in/donnylvu/">
<img src="assets/linkedin.png" alt='linkedin'/>
</a>
</div>
</div>
<div class="gitabove inblock">
Ray Sakultarawattn
<div class="git inblock">
<a href="https://github.com/RSakultarawattn">
<img src="assets/github.png" alt='github'/>
</a>
<a href="https://www.linkedin.com/in/raysakultarawattn/">
<img src="assets/linkedin.png" alt='linkedin'/>
</a>
</div>
</div>
</span>
</footer>
<script type="module" src="app.js"></script>
</body>
</html>