-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
127 lines (118 loc) · 5.18 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
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World</title>
<!-- Bootstrap stylesheet -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- Viewport optimization -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Font: Monsterrat -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!-- My css -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<!-- Header/Navbar -->
<header>
<div id="header">
<div class="row">
<!-- h1 Left -->
<div class="col-md-4">
<h1 class="ml">Jarren Patao</h1>
</div>
<!-- Navbar Right -->
<div class="col-md-8">
<div class="navbar">
<ul class="nav justify-content-end">
<li class="nav-item">
<a class="nav-link" href="index.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="portfolio.html">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="container">
<!-- Content here -->
<div class="row marg pt">
<div class="col-md-6">
<div class="card bg-dark text-white">
<img class="card-img" src="assets/images/IMG_9646.JPG" alt="Card image">
<div class="card-img-overlay">
<h5 class="card-title">Project 1</h5>
<p class="card-text">This is where a description of the project would go.</p>
<p class="card-text">Last updated 3 mins ago</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-md-6">
<div class="card bg-dark text-white">
<img class="card-img" src="assets/images/IMG_1970.JPG" alt="Card image">
<div class="card-img-overlay">
<h5 class="card-title">Project 2</h5>
<p class="card-text">This is where a description of the project would go.</p>
<p class="card-text">Last updated 12 mins ago</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card bg-dark text-white">
<img class="card-img" src="assets/images/IMG_8131.JPG" alt="Card image">
<div class="card-img-overlay">
<h5 class="card-title">Project 3</h5>
<p class="card-text">This is where a description of the project would go.</p>
<p class="card-text">Last updated 3 mins ago</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row marg pt">
<div class="col-md-6">
<div class="card bg-dark text-white">
<img class="card-img" src="assets/images/IMG_0576.JPG" alt="Card image">
<div class="card-img-overlay">
<h5 class="card-title">Project 4</h5>
<p class="card-text">This is where a description of the project would go.</p>
<p class="card-text">Last updated 33 mins ago</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card bg-dark text-white">
<img class="card-img" src="assets/images/IMG_0708.JPG" alt="Card image">
<div class="card-img-overlay">
<h5 class="card-title">Project 5</h5>
<p class="card-text">This is where a description of the project would go.</p>
<p class="card-text">Last updated 39 mins ago</p>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-copyright text-center py-3">
<p>© Copyright</p>
<img src="assets/images/github_circle_color-512.png" alt="GitHub" width="30px">
<img src="assets/images/instagram-512.png" alt="Instagram" width="30px">
<img src="assets/images/GLHFICON copy.png" alt="GLHF" width="30px">
<img src="assets/images/facebook_circle-512.png" alt="Facebook" width="30px">
</div>
</footer>
<!-- Scripts for Bootstrap js -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
</html>