-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
75 lines (60 loc) · 2.08 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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Portfolio | Your Name</title>
<link rel="stylesheet" type="text/css" href="assets/reset.css">
<link rel="stylesheet" type="text/css" href="assets/style.css"
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header id="masthead">
<div class="container">
<a href="index.html" id="logo">Danielle Maddox</a>
<nav>
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<div id="main-container" class="container">
<section class="main-section">
<h1>Portfolio</h1>
<div class="work">
<img src="http://via.placeholder.com/300x215" alt="hangman">
<h3>Hangman</h3>
</div>
<div class="work">
<img src="http://via.placeholder.com/300x215" alt="RPG Game">
<h3>RPG Game</h3>
</div>
<div class="work">
<img src="http://via.placeholder.com/300x215" alt="Trivia Game">
<h3>Trivia Game</h3>
</div>
<div class="work">
<img src="http://via.placeholder.com/300x215" alt="Rutgers Info Widget">
<h3>Rutgers Info Widget</h3>
</div>
<div class="work">
<img src="http://via.placeholder.com/300x215" 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/dmaddox" target="_blank"><img src="assets/images/gh.png" class="social" alt="GitHub" /></a>
<a href="https://www.linkedin.com/in/dmaddx/" target="_blank"><img src="assets/images/li.png" class="social" alt="LinkedIn" /></a>
<a href="https://stackexchange.com/users/12042471/dmaddox" target="_blank"><img src="assets/images/so.png" class="social" alt="Stack Overflow" /></a>
</div>
</section>
</div>
<footer>
<div class="container">
Copyright © 2016 Your Name
</div>
</footer>
</body>
</html>