-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
27 lines (27 loc) · 1.17 KB
/
demo.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Network Plate</title>
</head>
<body>
<h1>This is a demo page</h1>
<form>
<input value="Hey there"/>
<button>Go</button>
<img src="https://images.unsplash.com/photo-1525547719571-a2d4ac8945e2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=700&q=80"/>
<img src="https://images.unsplash.com/photo-1545239351-ef35f43d514b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=967&q=80s" />
</form>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.map"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.slim.min.map"></script>
<script>
setTimeout(() => {
var sc = document.createElement("script");
sc.src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js";
document.getElementsByTagName("body")[0].appendChild(sc);
}, 3000)
</script>
<script src='node_modules/network-plate/scripts/main.js'></script>
</body>
</html>