-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
74 lines (53 loc) · 2.5 KB
/
Copy pathportfolio.html
File metadata and controls
74 lines (53 loc) · 2.5 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="assets/css/style.css">
<title>Portfolio</title>
</head>
<body>
<div>
<div id="header">
<h1>Garth Smith</h1>
<ul id="menu">
<li><a href="index.html">About</li></a>
<li><a href="portfolio.html">Portfolio</li></a>
<li><a href="contact.html">Contact</li></a>
</ul>
</div>
<section id="main">
<h2>Portfolio</h2>
<div id="photo">
<div class="project">
<img src="assets/images/H.jpg" alt="Hangman" id="portfolio" height="250px" width="305px">
<h4 class="banner">Hangman</h4>
</div>
<div class="project">
<img src="assets/images/RPG.jpg" alt="RPG Game" id="portfolio" height="250px" width="305px">
<h4>RPG Game</h4>
</div>
<div class="project">
<img src="assets/images/TG.jpg" alt="Trivia Game" id="portfolio" height="250px" width="305px">
<h4>Trivia Game</h4>
</div>
<div class="project">
<img src="assets/images/RIW.jpg" alt="Rutgers Info Widget" id="portfolio" height="250px" width="305px">
<h4>Rutgers Info WIdget</h4>
</div>
<div class="project">
<img src="assets/images/RPS.jpg" alt="Rock Paper Scissors" id="portfolio" height="250px" width="305px">
<h4>Rock Paper Scissors</h4>
</div>
</div>
</section>
<div id="icons">
<h3>Connect with Me</h3>
<a href="https://github.com/thargs"><img src="assets/images/github_square_black-128.png" alt="Github logo" width="60px" height="60px"></a>
<a href="https://www.linkedin.com/in/thargs"/><img src="assets/images/linkedin_square_color-128.png" alt="Linkedin logo" width="60px" height="60px"></a>
<a href="https://stackoverflow.com/users/9134400/garth"><img src="assets/images/overflow-128.png" alt="Stack Overflow logo" width="55px" height="55px"></a>
</div>
</div>
<div id="footer">
<p id="textfoot"> © Copyright 2018 Garth Smith</p>
</div>
</body>
</html>