-
Notifications
You must be signed in to change notification settings - Fork 0
/
artshowcase.html
44 lines (40 loc) · 1.5 KB
/
artshowcase.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
41
42
43
44
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>Art - GDC@WM</title>
<link rel="stylesheet" href="navbar.css">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<style>
h1 {
text-align: center;
}
p {
text-align: center;
font-size: 1.25em;
}
</style>
</head>
<body>
<div class="topnav">
<a href="/">Home</a>
<a href="/parryt">Parryt</a>
<a href="/memberinfo">Members</a>
<a href="/artshowcase" class="active">Art</a>
<a href="/contactus">Contact Us</a>
</div>
<div class="body">
<h1>Parryt Art</h1>
<div class="grid-container">
<div class="grid-item">Walking animation for the main character, Pari.<br><img src="img/pari-walking.gif" title="pari walking" alt="Pari walking animation"><br><br></div>
<div class="grid-item">Sprite for male pirate enemy.<br><img src="img/pirate.png" title="pirate" width=128 alt="Pirate sprite"><br><br></div>
<div class="grid-item">Sprite for female pirate enemy.<br><img src="img/pirategirl.png" title="pirate girl" width=128 alt="Female pirate sprite"><br><br></div>
<div class="grid-item">Concept for a parrot in flight.<br><img src="img/parrotsprite.png" title="parrot" width=128 alt="Parrot sprite"><br><br></div>
</div>
<p>
A screenshot of a concept for a ship's deck. <br>
<img src="img/shipdeck.png" title="ship deck" alt="Ship concept">
</p>
</div>
</body>
</html>