-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 924 Bytes
/
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
<html>
<head>
<style>
.left {
width: 50%;
float: left;
}
.left, .right {
font-size: 200px;
}
.right {
width: 50%;
float: right;
}
.row {
width: 100%;
}
span {
color: red;
}
</style>
</head>
<body>
<div id="stepContainer">
<div class="left">
<div class="row">
Front <span>{{left.front}}</span>
</div>
<div class="row">
Heel <span>{{left.heel}}</span>
</div>
</div>
<div class="right">
<div class="row">
Front <span>{{right.front}}</span>
</div>
<div class="row">
Heel <span>{{right.heel}}</span>
</div>
</div>
</div>
<script src="/vue.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="/app.js"></script>
</body>
</html>