-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
64 lines (50 loc) · 1.45 KB
/
Copy pathportfolio.html
File metadata and controls
64 lines (50 loc) · 1.45 KB
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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<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">
</head>
<body>
<header id="masthead">
<div class="container">
<a href="index.html" id="logo">Anthony Silva</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="assets/images/" alt="Word Guess">
<h3>Word Guess</h3>
</div>
<div class="work">
<img src="assets/images/" alt="RPG Game">
<h3>RPG Game</h3>
</div>
<div class="work">
<img src="assets/images/" alt="Trivia Game">
<h3>Trivia Game</h3>
</div>
<div class="work">
<img src="assets/images/" alt="Rutgers Info Widget">
<h3>Rutgers Info Widget</h3>
</div>
<div class="work">
<img src="assets/images/" alt="Rock Paper Scissors">
<h3>Rock Paper Scissors</h3>
</div>
</section>
</div>
<footer>
</footer>
</body>
</html>