-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
67 lines (56 loc) · 2.04 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
<!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>Basic Portfolio - Maura Fortino</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="container">
<header>
<div class="title">
<h1><a class="home" href="index.html">Maura Fortino</a></h1>
<nav>
<a href="index.html">About Me</a>
<span>|</span>
<a href="#" class="active">Portfolio</a>
<span>|</span>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<section class="clearfix">
<h2>
Portfolio
</h2>
<hr>
<div class="box">
<img class="portfolio-pic" src="assets/images/man-and-comp.jpg" alt="image of a man working on laptop">
<figcaption>Hangman</figcaption>
</div>
<div class="box">
<img class="portfolio-pic" src="assets/images/pug.jpg" alt="image of a pug wrapped up in a blanket">
<figcaption>RPG Game</figcaption>
</div>
<div class="box">
<img class="portfolio-pic" src="assets/images/shoes.jpg" alt="image of a person sitting on the ground with legs out stretch and shoes are centered">
<figcaption>Trivia Game</figcaption>
</div>
<div class="box">
<img class="portfolio-pic" src="assets/images/trains.jpg" alt="image of trains in a train station">
<figcaption>Rutgers Info Widget</figcaption>
</div>
<div class="box">
<img class="portfolio-pic" src="assets/images/jelly-fish.jpg" alt="image of an orange jelly fish swimming in the ocean">
<figcaption>Rock Paper Scissors</figcaption>
</div>
</section>
</div>
<footer>
<div class="stripe"></div>
<span class="copyright">Copyright ©</span>
</footer>
</body>
</html>