-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.5 KB
/
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
47
48
49
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8" />
<title>Markup Sync Client</title>
<style type="text/css">
.embed-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
}
.embed-container iframe, .embed-container object, .embed-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#playerContainer {
width: 90%;
margin: 0 auto;
}
#playerMessage {
width: 100%;
margin: 0 auto;
}
</style>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@aspnet/signalr@1.1.0/dist/browser/signalr.min.js"></script>
<script src="message-hub.js"></script>
</head>
<body >
<h3>Azure SignalR Service Markup Client</h3>
<div class="container wrapper-body-text center-container">
<div class="row">
<div class="col-md-12">
<div class="box-text">
<p class="text" style="text-align: center" id="message" name="message"></p>
</div>
</div>
</div>
</div>
</body>
</html>