-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (31 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi"/>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- BlackTie CSS -->
<link rel="stylesheet" type="text/css" href="./css/blacktie.css" />
<!-- Font-Family CSS -->
<link rel='stylesheet' type='text/css' href='./css/font-family.css' />
<title>BlackTie.js</title>
</head>
<body>
<ul id="ham-menu">
<li class="ham-item"><a href="#">Link One</a></li>
<li class="ham-item"><a href="#">Link Two</a></li>
<li class="ham-item"><a href="#">Link Three</a></li>
<li class="ham-item"><a href="#">Link Four</a></li>
<li class="ham-item"><a href="#">Link Five</a></li>
</ul>
<div id="container">
<p class="button" id="star"> Click Me!</p>
</div>
<script src="./js/blacktie.js" type="text/javascript"></script>
<script src="./js/index.js" type="text/javascript"></script>
</body>
</html>