-
Notifications
You must be signed in to change notification settings - Fork 0
/
work.html
65 lines (64 loc) · 2.25 KB
/
work.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!--image overlay adapted from https://codepen.io/ArnaudBalland/pen/vGZKLr -->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="work.css">
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet">
<meta charset="utf-8">
<title>Work</title>
</head>
<body>
<div class="contentContainer">
<span class="descriptionContainer">
<ul>
<li><a href='/'>Home</a></li>
<li>|</li>
<li><a href="work.html">Work</a></li>
</ul>
<h1>Work </h1>
<p>Check out some of my artistic work</p>
</span>
<span class="imageContainer">
<span class="miniArtContainer">
<span class="workContainer">
<a href="modeling.html">
<div class="content-overlay"></div>
<img class="content-image" src="images/roomTile.jpg">
<div class="content-details fadeIn-bottom">
<h3 class="content-title">Maya: Room Modeling</h3>
</div>
</a>
</span>
<span class="workContainer">
<a href="characterModel.html">
<div class="content-overlay"></div>
<img class="content-image" src="images/characterTile.jpeg">
<div class="content-details fadeIn-bottom">
<h3 class="content-title">Maya: Character Modeling</h3>
</div>
</a>
</span>
</span>
<span class="miniArtContainer">
<span class="workContainer">
<a href="reframePoster.html">
<div class="content-overlay"></div>
<img class="content-image" src="images/PosterTile.jpg">
<div class="content-details fadeIn-bottom">
<h3 class="content-title">Reframe Posters</h3>
</div>
</a>
</span>
<span class="workContainer">
<a href="photography.html">
<div class="content-overlay"></div>
<img class="content-image" src="images/photosTile.jpg">
<div class="content-details fadeIn-bottom">
<h3 class="content-title">Photos</h3>
</div>
</a>
</span>
</span>
</span>
</div>
</body>