-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio-item-4.html
75 lines (63 loc) · 3.19 KB
/
portfolio-item-4.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <link rel="stylesheet" href="normalize.css"> -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css" integrity="sha256-46qynGAkLSFpVbEBog43gvNhfrOj+BmwXdxFgVK/Kvc=" crossorigin="anonymous" />
<!-- Update these with your own fonts -->
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,900|Source+Sans+Pro:300,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="index.html" class="nav__link">Home</a></li>
<li class="nav__item"><a href="index.html#services" class="nav__link">My Services</a></li>
<li class="nav__item"><a href="index.html#about" class="nav__link">About me</a></li>
<li class="nav__item"><a href="index.html#work" class="nav__link">My Work</a></li>
</ul>
</nav>
</header>
<section class="intro" id="home" data-aos="fade-right">
<h1 class="section__title section__title--intro" >
Yelp Clone
</h1>
</section>
<div class="portfolio-item-individual">
<p>Browse And Add Different CampGrounds</p>
<a href="https://yelp.up.railway.app/"><img src="img/yelpcamp.png" alt=""></a>
<p>
A full-stack website where a camper can add, remove, edit, and delete a campground. One adds their location and it will be displayed on the map.Technologies used include Nodejs, Expressjs, Ejs, Bootstrap, and Passport for authentication.
</p>
</div>
<!-- Footer -->
<footer class="footer">
<!-- replace with your own email address -->
<a href="mailto:pserembae@gmail.com" class="footer__link">pserembae@gmail.com</a>
<ul class="social-list">
<li class="social-list__item">
<a class="social-list__link" href="https://www.linkedin.com/in/seremba-patrick/">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://twitter.com/dev_seremba">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://github.com/Seremba">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</footer>
<script src="js/index.js"></script>
</body>
</html>