-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprojectgallery.html
More file actions
36 lines (34 loc) · 1.34 KB
/
projectgallery.html
File metadata and controls
36 lines (34 loc) · 1.34 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Gallery</title>
<link rel="icon" href="Green Cube.png">
<link rel="stylesheet" type="text/css"href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<nav>
<div class="left-links">
<a class="links" href="index.html">Home</a>
<a class="links" href="about.html">About</a>
<a class="selected links" href="projectgallery.html">Gallery</a>
<a class="links" href="games.html">Games</a>
<a class="links" href="tools.html">Tools</a>
<a class="links" href="newyear.html">Happy New Year</a>
</div>
<div class="right-links">
<a class="links" href="login.html">Log In</a>
<a class="links" href="signup.html">Sign Up</a>
</div>
</nav>
<div>
<p style="float: left;"><img src="wip.png" height="200px" width="200px" ></p>
<h1>Coming Soon</h1>
<h4>Work in progress </h4>
<p> this page is not done yet - Come back soon!</p>
<button onclick="window.location.href='galleryview.html';">
View Anyways
</button>
</div>
</body>
</html>