-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
81 lines (75 loc) · 3.37 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en-US"> <!--<![endif]-->
<!--if you're using IE what is wrong with you?!!-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Julio | Full-Stack Developer</title>
<meta name="description" content="practice portfolio">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class = "sticky">
<header>
<div id = "headerWrapper">
<div id = "mainLogo">Julio Sanchez</div>
<nav id = "menu">
<ul>
<li><a href = "index.html">About</a></li>
<li><a class = "current" href = "portfolio.html">Portfolio</a></li>
<li><a href = "contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!--START OF MAIN CONTENT-->
<div id = "mainContentWrapper">
<div id = "aboutMeWrapper">
<h1 class = "aboutMe">Portfolio</h1>
<!--START OF TABLE FOR IMAGES-->
<table class = "imageTable">
<tr>
<td id = "td1">
<img src="assets/images/laptopImg.jpeg" alt="portfoio">
<div class = "textBlock">Hangman</div>
</td>
<td id = "td2">
<img src="assets/images/laptop2Img.jpeg" alt="portfoio">
<div class = "textBlock">RPG Game</div>
</td>
</tr>
<tr>
<td id = "td3">
<img src="assets/images/laptop2Img.jpeg" alt="portfoio">
<div class = "textBlock">Trivia Game</div>
</td>
<td id = "td4">
<img src="assets/images/skateBoarderImg.jpeg" alt="portfoio">
<div class = "textBlock">Rutgers Info Widget</div>
</td>
</tr>
<tr>
<td id = "td5">
<img src="assets/images/laptopImg.jpeg" alt="portfoio">
<div class = "textBlock">Rock Paper Scissors</div>
</td>
</tr>
</table>
<!--END OF TABLE FOR IMAGES-->
</div>
</div>
</div> <!--END OF STICKY FOOTER-->
<div id = "outerFooter">
<footer>
copyright ©
</footer>
</div>
</body>
</html>