-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
79 lines (65 loc) · 2.14 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
77
78
79
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio | Dante Fragapane</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="wrapper">
<header id="masthead">
<div class="container">
<a href="index.html" id="logo">Dante Fragapane</a>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="container">
<section class="main-section">
<h1>Portfolio</h1>
<div class="work">
<a href='https://github.com/DanteFragapane/FlightPlanDB.js'>
<img src="assets/images/technics-q-c-640-480-1.jpg" alt="FlightPlanDB">
<h3>FlightPlanDB.js, an API wrapper</h3>
</a>
</div>
<div class="work">
<a href='https://github.com/DanteFragapane/RentalCar'>
<img src="assets/images/technics-q-c-640-480-5.jpg" alt="Trivia Game">
<h3>RentalCar, a rental car database replication</h3>
</a>
</div>
<div class="work">
<a href='https://github.com/DanteFragapane/project-2-starter'>
<img src="assets/images/technics-q-c-640-480-2.jpg" alt="ConcertTrip">
<h3>RPG Sci-Fi Game</h3>
</a>
</div>
<div class="work">
<a href='https://github.com/DanteFragapane/LIRIbot'>
<img src="assets/images/technics-q-c-640-480-7.jpg" alt="LIRI Bot">
<h3>LIRI Bot</h3>
</div>
<div class="work">
<a href='https://dantefragapane.github.io/TrainScheduler/'>
<img src="assets/images/technics-q-c-640-480-9.jpg" alt="Train Scheduler">
<h3>Train Scheduler</h3>
</a>
</div>
</section>
</main>
<div class="push"></div>
</div>
<footer>
<div class="container">
© Copyright
</div>
</footer>
</body>
</html>