-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (36 loc) · 1.7 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
<!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>
<!-- lama CSS -->
<link rel="stylesheet" type="text/css" href="./css/lama.css" />
<!-- Font-Family CSS -->
<link rel='stylesheet' type='text/css' href='./css/font-family.css' />
<title>Build with lama.js</title>
</head>
<body id="main">
<ul id="lama-menu">
<li class="lama-item"><a href="index.html">Home</a></li>
<li class="lama-item"><a href="image.html">Images</a></li>
<li class="lama-item"><a href="listing.html">Shopping</a></li>
<li class="lama-item"><a href="notify.html">Notifications</a></li>
<li class="lama-item"><a href="contact.html">Contact</a></li>
<li class="lama-item"><a href="about.html">About</a></li>
</ul>
<div id="container">
<p class="button" >HOME PAGE</p>
<div class="img-comp">
<img src="images/lamajs.png">
</div>
</div>
<script src="./js/lama.js" type="text/javascript"></script>
<script src="./js/index.js" type="text/javascript"></script>
<script src="./js/alerts_.js" type="text/javascript"></script>
</body>
</html>