-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (96 loc) · 4.01 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Project 2 - Portfolio Site</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<a class="navbar-brand" href="#">
<img src="img/color_logo_transparent.png" alt="logo image">
</a>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto">
</ul>
<div class="mt-2 mt-md-0">
<h1 class="text-white">Michael Fisher</h1>
<h5 class="text-white">Professional Developer</h5>
</div>
</div>
</nav>
</header>
<div class="container-fluid">
<div class="row">
<div class="col-lg-3 mt-2">
<table class="table">
<thead>
<tr>
<th scope="col">Useful Links</th>
</tr>
</thead>
<tbody>
<tr>
<td>- <a href="https://www.apple.com/" target="_blank">Apple Website</a></td>
</tr>
<tr>
<td>- <a href="https://9to5mac.com/" target="_blank">9TO5 Mac</a></td>
</tr>
<tr>
<td>- <a href="https://www.macrumors.com/" target="_blank">MacRumors</a></td>
</tr>
</tbody>
</table>
</div>
<div class="col-lg-9 mt-2">
<img class="img-fluid img-thumbnail mb-2" src="img/man-using-tablet-blue-website-header.jpg"
alt="man using ipad image">
<div class="row">
<div class="col-lg-4 col-md-6 mb-4">
<div class="card h-100">
<img class="card-img-top" src="img/desk-computer-imac-home.jpg" alt="imac image">
<div class="card-body text-right">
<p class="mb-0">Design is not just what it looks like and feels like. Design is how it
works.</p>
<footer class="blockquote-footer"><cite title="Source Title">Steve Jobs</cite></footer>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<div class="card h-100">
<img class="card-img-top" src="img/pexels-photo-257897.jpeg" alt="macbook pro and coffee image">
<div class="card-body text-right">
<p class="mb-0">We hire people who want to make the best things in the world.</p>
<footer class="blockquote-footer"><cite title="Source Title">Steve Jobs</cite></footer>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<div class="card h-100">
<img class="card-img-top" src="img/pexels-photo-459654.jpeg" alt="macbook pro on desk image">
<div class="card-body text-right">
<p class="mb-0">Innovation distinguishes between a leader and a follower.</p>
<footer class="blockquote-footer"><cite title="Source Title">Steve Jobs</cite></footer>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p class="m-0 text-center">Copyright © Portfolio Site 2018</p>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="js/jquery-3.3.1.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>