-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 3.59 KB
/
index.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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/hover-min.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<title>Kevin Fernandes - Portfolio</title>
</head>
<body>
<header class="container py-4">
<div class="row">
<div class="col-12">
<nav class="navbar navbar-expand-md navbar-light bg-faded">
<div class="navbar-brand mb-3 mb-sm-0">
<img src="img/logo-dark.svg" alt="Tapp-That Apps logo">
</div>
<div class="mb-3 mb-sm-0 ml-md-auto text-left text-md-right">
<h1 class="nav-title">Kevin Fernandes</h1>
<h2 class="nav-subtitle">UI/UX Ninja</h2>
</div>
</nav>
</div>
</div>
</header>
<main>
<div id="hero" class="container py-4">
<div class="row">
<div class="col-12">
<img class="img-fluid mb-4" src="img/stephen-pedersen-187281-unsplash.jpg" alt="">
</div>
</div>
</div>
<section id="featured" class="container">
<div class="row">
<div class="col-12">
<h2 class="section-title mb-5">Featured Work</h2>
</div>
</div>
<div class="row align-items-end">
<article class="portfolio-item col-12 col-md-4 mb-5 mb-md-0">
<h2 class="title mb-4">UberEats Delivery</h2>
<img class="figure-img img-fluid rounded hvr-grow" src="img/andhika-soreng-399059-unsplash.jpg" alt="">
<cite class="mb-3 d-block">Photo by Andhika Soreng</cite>
<a href="https://github.com/kfernandes29">Take A Ride</a>
</article>
<article class="portfolio-item col-12 col-md-4 mb-5 mb-md-0">
<h2 class="title mb-4">Snowy Road</h2>
<img class="figure-img img-fluid rounded hvr-grow" src="img/gemma-evans-182245-unsplash.jpg" alt="">
<cite class="mb-3 d-block">Photo by Gemma Evans</cite>
<a href="https://github.com/kfernandes29">A Slippery Slope</a>
</article>
<article class="portfolio-item col-12 col-md-4 mb-5 mb-md-0">
<h2 class="title mb-4">PineOranges</h2>
<img class="figure-img img-fluid rounded hvr-grow" src="img/igor-ovsyannykov-223090-unsplash.jpg" alt="">
<cite class="mb-3 d-block">Photo by Igor Ovsyannykov</cite>
<a href="https://github.com/kfernandes29">Click This Link To Nowhere</a>
</article>
</div>
</section>
</main>
<footer class="py-5">
<div class="container">
<div class="row">
<div class="col-12">
<p class="mx-auto text-center text-md-right"><b>© 2018 Kevin Fernandes</b></p>
</div>
</div>
</div>
</footer>
</body>
</html>