-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
114 lines (106 loc) · 4.94 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--Google Fonts-->
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap" rel="stylesheet">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Supplemental CSS -->
<link rel="stylesheet" href="assets/style.css">
<title>Web Development Portfolio | Rick Levy</title>
</head>
<body>
<!--Navbar-->
<nav
class="navbar navbar-expand-lg navbar-dark"
style="background-color: #037f51;">
<!--"Brand"-->
<a class="navbar-brand">Rick Levy</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<!--About Page Link-->
<a class="nav-item nav-link" href="index.html">About <span class="sr-only">(current)</span></a>
<!--Portfolio Page Link-->
<a class="nav-item nav-link active" href="portfolio.html">Web Development Portfolio</a>
<!--Contact Page Link-->
<a class="nav-item nav-link" href="contact.html">Contact</a>
</div>
</div>
</nav>
<!--Main Content-->
<main class="container">
<!--Header-->
<header class="row">
<section class="col-md-12">
<h1>Web Development Portfolio</h1>
</section>
</header>
<!--Projects-->
<section class="row">
<!-- Project 1-->
<section class="col-md-4">
<div class="card">
<img src="assets/navgrub.png" class="card-img-top" alt="navGrub Image">
<div class="card-body">
<h5 class="card-title"> <a href="https://ricklevy21.github.io/nav-grub/">NavGrub</a></h5>
<p class="card-text">A front end application for searching and mapping restaurants.</p>
</div>
</div>
</section>
<!-- Project 2-->
<section class="col-md-4">
<div class="card">
<img src="assets/renooster.png" class="card-img-top" alt="Renooster Application">
<div class="card-body">
<h5 class="card-title"><a href="https://renooster.herokuapp.com/">Renooster</a></h5>
<p class="card-text">A full stack express app that uses sequelize, handlebars, and passport.js to let users manage subscriptions.</p>
</div>
</div>
</section>
<!-- Project 3-->
<section class="col-md-4">
<div class="card"">
<img src="assets/masterfade.jpg" class="card-img-top" alt="Landscap image">
<div class="card-body">
<h5 class="card-title">masterfade</h5>
<p class="card-text">All you see are zeros and ones</p>
</div>
</div>
</section>
</section>
</main>
<!--Footer With Social Media -->
<nav class="navbar fixed-bottom navbar-light justify-content-end align-items-center">
<!--twitter-->
<a href="https://twitter.com/RichardALevy" class="fa fa-twitter"></a>
<!--instagram-->
<a href="https://www.instagram.com/ricklevy21/" class="fa fa-instagram"></a>
<!--github-->
<a href="https://github.com/ricklevy21" class="fa fa-github"></a>
<!--ORCID-->
<a href="https://orcid.org/0000-0002-4401-1380"><img src="assets/orcid_logo.png" alt="ORCID account" class="logos"></a>
<!--iNaturalist-->
<a href="https://www.inaturalist.org/observations/ricklevy21"><img src="assets/inaturalist_logo.png" alt="iNaturalist account" class="logos"></a>
</nav>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>