-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
76 lines (63 loc) · 2.72 KB
/
portfolio.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
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Portfolio</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/reset.css" type="text/css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<!-- NAVIGATION: BEGIN -->
<div class="topnav">
<ul>
<li><h1><a class="navtitle" href="index.html">About Krizel</a></h1></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li class="main-menu"><a href="index.html">About</a></li>
</ul>
</div>
<!-- NAVIGATION: END -->
<!-- PORTFOLIO BLOCKS: BEGIN -->
<div class="container">
<h2>Portfolio</h2>
<hr>
<!-- HANGMAN -->
<div class="row">
<div class="column">
<div class="image-overlay">
<img src="http://placekitten.com/200/150" alt="Hangman" />
<h4><span>Hangman</span></h4>
</div>
<!-- RPG GAME-->
<div class="image-overlay">
<img src="http://placekitten.com/200/150" alt="RPG Game">
<h4><span>RPG Game</span></h4>
</div>
<!-- TRIVIA GAME -->
<div class="image-overlay">
<img src="http://placekitten.com/200/150" alt="Trivia Game">
<h4><span>Trivia Game</span></h4>
</div>
</div>
<!-- RUTGERS INFO WIDGET -->
<div class="column">
<div class="image-overlay">
<img src="http://placekitten.com/200/150" alt="Rutgers Info Widget">
<h4><span>Rutgers Info Widget</span></h4>
</div>
<!-- ROCK PAPER SCISSORS-->
<div class="image-overlay">
<img src="http://placekitten.com/200/150" alt="Rock Paper Scissors">
<h4><span>Rock Paper Scissors</span></h4>
</div>
</div>
</div>
</div>
<!-- FOOTER BEGINS -->
<div class="footer">
<div class="footer-content">Copyright ©</div>
</div>
</body>
</html>