-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
107 lines (73 loc) · 2.19 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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="content">
<div class="header-container">
<header>
<h1>Jordan Shear</h1>
</header>
<div class="header-links">
<div id="about">
<a href="index.html" style="text-decoration: none; font-weight: normal; color: #A7A5A5;">About</a>
</div>
<div id="portfolio">
Portfolio
</div>
<div id="contact">
<a href="contact.html" style="text-decoration: none; font-weight: normal; color: #A7A5A5;">Contact</a>
</div>
</div>
</div>
<div class="port-container">
<div class="contacting">
<h1>Porfolio</h1>
</div>
<div id="hangman">
<img id="hangman-img" src="assets/images/stock-photo-angles.jpg">
<div id="hangman-text">
Hangman
</div>
</div>
<div id="rpg">
<img id="rpg-img" src="assets/images/stock-photo-couple.jpg">
<div id="rpg-text">
RPG Game
</div>
</div>
<div id="trivia">
<img id="trivia-img" src="assets/images/stock-photo-eyes.jpg">
<div id="trivia-text">
Trivia Game
</div>
</div>
<div id="rutgers">
<img id="rutgers-img" src="assets/images/stock-photo-sanfran.jpg">
<div id="rutgers-text">
Rutgers Info Widget
</div>
</div>
<div id="rps">
<img id="rps-img" src="assets/images/stock-photo-sydney.jpg">
<div id="rps-text">
Rock Paper Scissors
</div>
</div>
</div>
<div class="contact-links">
<div id="connect">
<h2>Connect with Me</h2>
</div>
<a href="https://www.linkedin.com/in/jordanshear/" target="_blank"><img id="linkedin" src="assets/images/if_square-linkedin_317725.png" alt="linkedin" height="64" width="64"></a>
<a href="https://github.com/oitowl7" target="_blannk"><img id="github" src="assets/images/if_github_six_black_107112.png" alt="github" height="64" width="64"></a>
<a href="https://stackoverflow.com/users/8706242/jordan?tab=profile" target="_blank"><img id="stack-overflow" src="assets/images/if_stack_overflow_1298710.png" alt="stack overflow" height="56" width="56"></a>
</div>
</div>
<div class="footer">
© Copyright Jordan Shear, 2017
</div>
</body>