-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (39 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
<style>
main { display: flex; flex-wrap: wrap; justify-content: center; }
section { margin: 1em; padding: 1em; border: 1px gray dotted; }
h1 { font-size: 120%; text-align: center; }
ol { padding-left: 1em; }
</style>
</head>
<body>
<h1> Simple Demo </h1>
<main>
<section>
<h2 id="jquery">jquery</h2>
</section>
<section>
<h2 id="lodash">lodash</h2>
</section>
<section>
<h2 id="ramda">ramda</h2>
</section>
<section>
<h2 id="vanilla">vanilla</h2>
</section>
<section>
<h2 id="library">library</h2>
</section>
</main>
<script src="../bower_components/jquery/dist/jquery.js"></script>
<!--<script src="../bower_components/underscore/underscore.js"></script>-->
<script src="../bower_components/lodash/lodash.js"></script>
<script src="../bower_components/ramda/dist/ramda.js"></script>
<script src="library.js"></script>
<script src="script.js"></script>
</body>
</html>