-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
89 lines (89 loc) · 3.15 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
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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="header">
<div class="mearat">
<a class="home" href="index.html">Mearat Hou</a>
</div>
<ul class="navbar">
<li class="navitems">
<a href="index.html">About</a>
</li>
<li class="navitems">
<a href="portfolio.html">Portfolio</a>
</li>
<li class="navitems">
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
<div class="main">
<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>
<div class="footer">
<div class="socialmedia">
<div class="github">
<a href="https://github.com/mearatjames">
<img src="assets/images/GitHub.png" width="30px" alt="GitHub">
</a>
</div>
<div class="linkedin">
<a href="https://www.linkedin.com/in/mearat-hou-013a93164/s">
<img src="assets/images/linkedin.png" width="30px" alt="linkedin">
</a>
</div>
<div class="stackoverflow">
<a href="https://stackoverflow.com/users/9907520/mearat-hou">
<img src="assets/images/stackoverflow.svg" width="30px" alt="stackoverflow">
</a>
</div>
</div>
<p>Copyright ©</p>
</div>
</div>
</body>
</html>