-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
123 lines (69 loc) · 2.91 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href=assets/css/reset.css>
<link rel="stylesheet" type="text/css" href=assets/css/style.css>
<title>Portfolio</title>
</head>
<body>
<div class="container"> <!--container is the entire layout, including the footer -->
<div id="sub-container"> <!--sub-container is everything except the footer-->
<header class="awesome-header"> <!-- container for the name and navlinks for about, portfolio, contact -->
<div class="header-container"> <!-- container for name -->
<h1 class="name">Timothy Lee</h1>
</div>
<nav id="navcontainer"> <!--navigation to about, portfolio, contact pages-->
<ul id="navlist">
<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>
</nav>
</header>
<section id="portfolio"> <!-- beginning of Portfolio container -->
<header class="info">
<h2>Portfolio</h2>
<br>
<hr>
</header>
<!-- start the enclosure of pictures -->
<div class="hangman">
<a href="#"><img src="assets/images/hangman.jpg" alt="hangman">
<p class="hangman-text">Hangman</p></a>
</div>
<div class="rpg">
<a href="#"><img src="assets/images/RPG.jpg" alt="RPG">
<p class="rpg-text">RPG Games</p></a>
</div>
<div class="trivia">
<a href="#"><img src="assets/images/trivia.jpg" alt="trivia">
<p class="trivia-text">Trivia Game</p></a>
</div>
<div class="rutgers">
<a href="#"><img src="assets/images/rutgers.jpg" alt="rutgers">
<p class="rutgers-text">Rutgers Info Widget</p></a>
</div>
<div class="rps">
<a href="#"><img src="assets/images/rockpaperscissors.jpg" alt="rps">
<p class="rps-text">Rock Paper Scissors Game</p></a>
</div>
</section> <!-- close of section with pictures -->
<aside class="connect-with-me-p"> <!-- start of connect with me sidebar -->
<h3>Connect With Me</h3>
<hr class="connect-with-me-line">
<div class="connect-icons">
<a href="https://github.com/timothydlee" target="_blank"><img src=assets/images/Github.png alt="github image"></a>
<a href="https://www.linkedin.com/in/timothy-lee-84370328" target="_blank"><img src=assets/images/LinkedIn.png alt="linkedin icon"></a>
<a href="http://stackoverflow.com/users/6933728/tim-lee" target="_blank"><img src=assets/images/StackOverflow.png alt="stackflow icon"></a>
</div>
</aside> <!-- end connect with me sidebar .connect-with-me -->
<div class="clearboth">
</div>
</div> <!-- end id #sub-container -->
<footer>
©Copyright Timothy Lee
</footer>
</div> <!-- end class .container -->
</body>
</html>