-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
48 lines (38 loc) · 1.4 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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Realtime: Storefy</title>
<link rel="stylesheet" media="all" href="css/styles.css">
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="//messaging-public.realtime.co/js/2.1.0/ortc.js"></script>
<script src="js/product_update.js"></script>
</head>
<body lang="en">
<header>
<a href="index.html"><h1>Storefy</h1></a>
<h2>a realtime demo using Realtime Messaging</h2>
<h3>You’re currently browsing a <a href="http://www.realtime.co/" target="_blank">Realtime®</a> demo using <a href="http://framework.realtime.co/messaging" target="_blank">Realtime Cloud Messaging</a>.</h3>
</header>
<article>
<figure>
<img id="imgImage" title="T-shirt Realtime" src="img/tshirt_big_grey.jpg" alt="T-shirt Realtime" height="415" width="420" border="0" />
</figure>
<aside>
<h5>T-shirt Realtime</h5>
<h6>(grey)</h6>
<p>A stylish tshirt for the Realtime® world wide web transformation.</p>
<h6 style="margin-bottom: 10px;">Available stock:
<span id="stock">20</span>
</h6>
<div id="price">
<span>$19.99</span>
</div>
<a href="javascript:;" class="buy">buy</a>
</aside>
</article>
<footer>
<p id="status" style="color: white">disconnected</h2>
</footer>
</body>
</html>