-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
40 lines (35 loc) · 1.25 KB
/
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
34
35
36
37
38
39
40
<!DOCTYPE html>
<head>
<meta charset='UTF-8' />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<title>Gallery</title>
<link rel='stylesheet' href='css/global-style.css' />
<link rel='stylesheet' href='css/gallery-style.css' />
</head>
<body>
<div class="container">
<div class="navbar">
<ul>
<li><a href="index.html">Index</a></li>
<li><a href="content.html">Content</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="FAQ/faq.html">FAQ</a></li>
</ul>
</div>
<div id="home" onclick="goHome()">
<h1>Gallery</h1>
<script>
function goHome() {
const button = document.getElementById("home");
button.onclick = window.location.href = "index.html";
}
</script>
</div>
<h3>  Results from <a href="https://github.com/mlouward/Fun/blob/master/Image%20Processing"
target="_blank" rel="noopener noreferrer">Image Processing</a> using different images</h3>
<img class="center" src="images/filter-saturn-res.png">
<img class="center" src="images/filter-portrait-res.png">
</div>
</body>