-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
61 lines (57 loc) · 1.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Ricky's Portfolio</title>
<link rel = "stylesheet" type="text/css" href = "./reset.css">
<link rel = "stylesheet" type = "text/css" href = "./index.css">
<link rel = "stylesheet" type = "text/css" href = "./portfolio.css">
<!--Github entry point index.html-->
</head>
<body>
<div class = "wrapper">
<header>
<div class = "header">
<div class = "title"><h1>Ricky</h1></div>
<div class = "nav clear">
<a href = "./index.html"><h3>About</h3></a>
<a href = "./portfolio.html"><h3>Portfolio</h3></a>
<a href = "./contact.html"><h3>Contact</h3></a>
</div>
</div>
</header>
<div class = "main">
<div class = "content">
<h2>Portfolio</h2>
<hr>
<div id="image1">
<img id="image1">
<div><h3>Hangman</h3></div>
</div>
<div id="image2">
<div><h3>RPG Game</h3></div>
</div>
<div id="image3">
<div><h3>Trivia Game</h3></div>
</div>
<div id="image4">
<div><h3>Mobile Game</h3></div>
</div>
<div id="image5">
<div><h3>Other</h3></div>
</div>
</div>
<div class = "contact">
<h3>Connect with Me</h3>
<hr>
<img src = "./github.png">
<img src = "./linkedin.png">
<img src = "./stackoverflow.png">
</div>
</div>
</div>
<footer>
<h3>Copyright 2018 Ricky Hsu</h3>
</footer>
</body>
</html>