-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
76 lines (60 loc) · 2.1 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>K Satterlee | Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header id ="masthead">
<div class="container">
<a href="index.html" id="logo">Kathy Satterlee</a>
<nav>
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<div class="container" id="main-container">
<section class="main-section">
<h1>Portfolio</h1>
<div class="work">
<a href="#"><img src="assets/images/hangman.jpg" class="auth-image" alt="Hangman">
<h3>Hangman</h3></a>
</div>
<div class="work">
<img src="assets/images/rpg.jpeg" class="auth-image" alt="RPG Game">
<h3>RPG Game</h3>
</div>
<div class="work">
<img src="assets/images/trivia.jpeg" class="auth-image" alt="Trivia Game">
<h3>Trivia Game</h3>
</div>
<div class="work">
<img src="assets/images/widget.jpeg" class="auth-image" alt="widgetutgers Info Widget">
<h3>Rutgers Info Widget</h3>
</div>
<div class="work">
<img src="assets/images/roshambo.jpg" class="auth-image" alt="Rock Paper Scissors">
<h3>Rock Paper Scissors</h3>
</div>
</section>
<section class="sidebar">
<div id="connect">
<h2> Connect With Me </h2>
<a href="https://github.com/ksatter/" target=_blank><img src="assets/images/git.png" alt="Github" class="social"></a>
<a href="https://www.linkedin.com/in/katheryn-satterlee/" target=_blank><img src="assets/images/li.png" alt="LinkedIn" class="social"></a>
<a href="https://stackoverflow.com/users/8413566/katheryn-satterlee?tab=profile" target=_blank><img src="assets/images/overflow.png" alt="Stack Overflow" class="social"></a>
</div>
</section>
</div>
<footer>
<div class="container">
<h6> © Copyright 2017 Kathy Satterlee</h6>
</div>
</footer>
</body>
</html>