-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgalleryview.html
More file actions
95 lines (86 loc) · 2.87 KB
/
galleryview.html
File metadata and controls
95 lines (86 loc) · 2.87 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery</title>
<link rel="icon" href="Green Cube.png">
<link rel="stylesheet" type="text/css"href="style.css">
<style>
.red {
background-color: rgb(255, 58, 58);
}
.project {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
width: 250px;
height: 260px;
border: 1px solid white;
margin: 10px;
}
</style>
</head>
<body>
<nav>
<div class="left-links">
<a class="links" href="index">Home</a>
<a class="links" href="about">About</a>
<a class="selected links" href="projectgallery.html">Gallery</a>
<a class="links" href="games">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">Log In</a>
<a class="links" href="signup">Sign Up</a>
</div>
</nav>
<h1>Gallery</h1>
<p>A place for all my projects</p>
<br>
<br>
<div class="project">
<p style="float: left;"> <a href="https://scratch.mit.edu/projects/564587348/" target="_blank">
<img class="red" alt="More Plastic - Let Me Go" title="More Plastic - Let Me Go" src="scratchlogo.png"
width="200" height="200"></a></p>
<br>
<a href="https://turbowarp.org/564587348/" target="_blank">
<img class="red" alt="Open in Turbowarp" title="Open in Turbowarp" src="turbowarp.png"
width="40" height="40">
</a>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<p>More Plastic - Let Me Go</p>
</div>
<div class="project">
<p style="float: left;"> <a href="https://scratch.mit.edu/projects/564579091/" target="_blank">
<img class="red" alt="More Plastic - Let Me Go" title="More Plastic - Let Me Go" src="scratchlogo.png"
width="200" height="200"></a></p>
<br>
<a href="https://turbowarp.org/564579091/" target="_blank">
<img class="red" alt="Open in Turbowarp" title="Open in Turbowarp" src="turbowarp.png"
width="40" height="40">
</a>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<p>Untitled-116</p>
</div>
</div>
</body>
</html>