-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
35 lines (19 loc) · 1 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Simple BigSemantics Demo</title>
<!--Webpage-specific javascript and CSS includes-->
<link href="./demo.css" rel="stylesheet" type="text/css">
<!-- I like the roboto font because it makes me feel like a real developer-->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,900italic,900,700italic,700,500,400italic,500italic,300italic,300,100italic,100' rel='stylesheet' type='text/css'>
</head>
<!-- Upon the page being loaded, the onLoad function in demo.js will be called-->
<body>
<h1>Welcome to BigSemantics (testing to see if this is a pseudo reasonable solution</h1>
<a href="./rendering.html">in-context metadata rendering example</a>
<a href="./semanticsOnly.html">data-only example</a>
<div class="callbackMessageHolder" id="priceOutput"></div>
</body>
</html>