This repository has been archived by the owner on May 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
95 lines (95 loc) · 3.8 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
<!DOCTYPE html>
<html>
<head>
<title>Michael Bolens</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="./assets/css/reset.css"/>
<link rel="stylesheet" type="text/css" href="./assets/css/style.css"/>
</head>
<body>
<header class="top-bar">
<div class="top-bar--content">
<h1 class="top-bar--name">Michael Bolens</h1>
<nav class="top-bar--nav">
<ul class="clearfix">
<li class="top-bar--nav-item">
<a href="./index.html">About</a>
</li>
<li class="top-bar--nav-item">
<a href="./portfolio.html">Portfolio</a>
</li>
<li class="top-bar--nav-item">
<a href="./contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="content">
<div class="row clearfix">
<div class="col col--wide">
<section id="portfolio" class="block">
<h2 class="block--title">Portfolio</h2>
<hr class="block--bar" />
<div class="block--content">
<ul class="cards clearfix">
<li class="image-card-container">
<a class="image-card" href="#">
<img class="image-card--image" src="http://via.placeholder.com/300x250">
<span class="image-card--text">Hangman</span>
</a>
</li>
<li class="image-card-container">
<a class="image-card" href="#">
<img class="image-card--image" src="http://via.placeholder.com/300x250">
<span class="image-card--text">RPG Game</span>
</a>
</li>
<li class="image-card-container">
<a class="image-card" href="#">
<img class="image-card--image" src="http://via.placeholder.com/300x250">
<span class="image-card--text">Trivia Game</span>
</a>
</li>
<li class="image-card-container">
<a class="image-card" href="#">
<img class="image-card--image" src="http://via.placeholder.com/300x250">
<span class="image-card--text">Rutgers Info Website</span>
</a>
</li>
<li class="image-card-container">
<a class="image-card" href="#">
<img class="image-card--image" src="http://via.placeholder.com/300x250">
<span class="image-card--text">Rock Paper Scissors</span>
</a>
</li>
</ul>
</div>
</section>
</div>
<div class="col col--narrow">
<section id="connect" class="block">
<h3 class="block--title">Connect with Me</h3>
<hr class="block--bar" />
<div class="block--content block-content__small">
<ul class="connect--icons">
<li>
<a target="_blank" href="https://github.com/bolensmichael"><img src="./assets/images/if_github_square_black_107109.svg" /></a>
</li>
<li>
<a target="_blank" href="https://www.linkedin.com/in/michaelbolens/"><img src="./assets/images/if_linkedin_square_color_107091.svg" /></a>
</li>
<li>
<a target="_blank" href="https://stackoverflow.com/users/2482508/bolensmichael"><img src="./assets/images/if_overflow_334695.svg" /></a>
</li>
</ul>
</div>
</section>
</div>
</div>
</div>
<footer class="bottom-bar">
<span class="bottom-bar--text">© 2017 Michael Bolens</span>
</footer>
</body>
</html>