-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
33 lines (30 loc) · 882 Bytes
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="gallery.css">
</head>
<body>
<div class="gallery-cont">
<!-- <div class="media-cont">
<div class="media">
<video autoplay loop src=""></video>
</div>
<div class="delete action-btn">Delete</div>
<div class="download action-btn">Download</div>
</div> -->
</div>
Gallery
<div class="back">Back</div>
<script src="./db.js"></script>
<script src="gallery.js"></script>
<script>
let backEle = document.querySelector(".back");
backEle.addEventListener("click", e => {
location.assign("index.html")
})
</script>
</body>
</html>