-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathindex.html
37 lines (37 loc) · 1.51 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
<!Doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Univ Color</title>
<link href="http://fonts.googleapis.com/earlyaccess/nanumgothic.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script type="text/javascript" src="./lib/surfacecurve-color.js"></script>
<script src="./lib/Semantic/semantic.js"></script>
<link rel="stylesheet" type="text/css" href="./lib/Semantic/semantic.css">
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div class="container">
<div class="ui title">
<h1 class="ui huge header">
Univ Color
<div class="sub header">
The Color System of Universities
</div>
</h1>
<a href="https://github.com/nayunhwan/UnivColor" class="ui button basic"><i class="github icon"></i> Github</a>
</div>
<div class="ui input focus search">
<input id="input" type="text" placeholder="Search..." />
</div>
<div id="hexCode" class="hexBox"></div>
<div id="university" class="flex">
</div>
</div>
<script type="text/javascript" src="./univColor.js"></script>
<script type="text/javascript" src="./univList.js"></script>
<script type="text/javascript" src="./app.js"></script>
</body>
</html>