-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daily UI</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="css/index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="https://use.fontawesome.com/63f4c123c8.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="js/index.js"></script>
<script src="js/list.json"></script>
</head>
<body>
<div class="container">
<header class="row text-center">
<div class="col-md-12">
<h1>Daily UI</h1>
<div class="col-md-4 col-md-offset-4">
<p>This is an ongoing independent project. The DailyUI challenges focuses on design markups; however, I used HTML, CSS, and JavaScript to develop the interfaces.</p>
<br>
<a href="http://kcornn.github.io">return to portfolio</a>
</div>
</div>
</header>
</div>
<div id="grid">
<div class="row text-center">
<div id="all-ui">
</div>
</div>
</div>
</body>
</html>