-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 922 Bytes
/
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
<html>
<head>
<title>Lightbox</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/app.css">
</head>
<body>
<header>
<h1>Lightbox</h1>
</header>
<section class="photos-container">
</section>
<div class="lightbox-layover">
</div>
<div class="lightbox-container">
<div class="lightbox-modal">
<button class="material-icons close-btn">close</button>
<button class="material-icons back-btn">arrow_back</button>
<button class="material-icons next-btn">arrow_forward</button>
<img class="lightbox-img"/>
</div>
</div>
<script type="text/javascript" src="js/app.js"></script>
<script>
var lb = LightBox();
lb.init();
</script>
</body>
</html>