-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
71 lines (68 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Mearat Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container">
<div class="frontnav"></div>
<div id="mearat">
<a id="home" href="index.html">Mearat Hou</a>
</div>
<div class="middlenav"></div>
<ul>
<li>
<a href="index.html">About</a>
</li>
<li>
<a href="portfolio.html">Portfolio</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
<div class="portfolio">
<h1>
<img align="left" width="40px" height="38px" src="assets/images/profiles.png" alt="Portfolio">Portfolio</h1>
<hr>
</div>
<div class="container2">
<div class="hangman"> Hangman
<br>
<a href="#">
<img width="150px" height="150px" src="assets/images/hangman-game.png" alt="">
</a>
</div>
<div class="rpggame">RPG Game
<br>
<a href="#">
<img width="150px" height="150px" src="assets/images/rpg-game.png" alt="">
</a>
</div>
<div class="triviagame">Trivia Game
<br>
<a href="#">
<img width="150px" height="150px" src="assets/images/winner.png" alt="">
</a>
</div>
<div class="rutgersinfowidget">Widgets
<br>
<a href="#">
<img width="150px" height="150px" src="assets/images/innovation.png" alt="">
</a>
</div>
<div class="rockpaperscissors">Rock Paper Scissors
<br>
<a href="#">
<img width="150px" height="150px" src="assets/images/paper.png" alt="">
</a>
</div>
</div>
<div id="footer">Copyright ©</div>
</div>
</body>
</html>