-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
64 lines (50 loc) · 1.39 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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Portfolio | Your Name</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header id="masthead">
<div class="container">
<a href="index.html" id="logo">Your Name</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="images/technics-q-c-640-480-1.jpg" alt="Word Guess">
<h3>Word Guess</h3>
</div>
<div class="work">
<img src="images/technics-q-c-640-480-2.jpg" alt="RPG Game">
<h3>RPG Game</h3>
</div>
<div class="work">
<img src="images/technics-q-c-640-480-5.jpg" alt="Trivia Game">
<h3>Trivia Game</h3>
</div>
<div class="work">
<img src="images/technics-q-c-640-480-7.jpg" alt="Rutgers Info Widget">
<h3>Rutgers Info Widget</h3>
</div>
<div class="work">
<img src="images/technics-q-c-640-480-9.jpg" alt="Rock Paper Scissors">
<h3>Rock Paper Scissors</h3>
</div>
</section>
</div>
<footer>
<div class="container">
Copyright ©
</div>
</footer>
</body>
</html>