-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathapp.html
More file actions
32 lines (30 loc) · 892 Bytes
/
app.html
File metadata and controls
32 lines (30 loc) · 892 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="app.css" />
<title>Gallery</title>
</head>
<body>
<div>
<h1>
Gallery
</h1>
<p>Share all your photos right here</p>
</div>
<!-- Photo grid start -->
<div id="app"></div>
<!-- HINT in this comment you can see
the future behavior of the gallery -->
<!-- <div class="row">
<div class="column">
<img src="https://source.unsplash.com/P44RIGl9V54" />
<img src="https://source.unsplash.com/P44RIGl9V54" />
<img src="https://source.unsplash.com/P44RIGl9V54" />
<img src="https://source.unsplash.com/P44RIGl9V54" />
<img src="https://source.unsplash.com/P44RIGl9V54" />
</div>
</div> -->
<!-- Photo grid finish -->
<script src="app.js"></script>
</body>
</html>