-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
89 lines (83 loc) · 2.68 KB
/
work.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mike Mamrila's Projects</title>
<link rel="shortcut icon" href="img/favicon-32x32.png" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.production.css">
</head>
<body>
<header class="page-header">
<img src="./img/mmamrila-logo.svg" width="50" alt="logo" class="page-header__item">
<nav class="main-navigation page-header__item">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<a href="index.html" role="menuitem" class="navigation-list__item navigation-list__item--active">Home</a>
</li>
<li role="presentation">
<a href="about.html" role="menuitem" class="navigation-list__item">About</a>
</li>
<li role="presentation">
<a href="contact.html" role="menuitem" class="navigation-list__item">Contact</a>
</li>
<li role="presentation">
<a href="work.html" role="menuitem" class="navigation-list__item">Work</a>
</li>
</ul>
</nav>
</header>
<section>
<h1>Projects</h1>
<div class="grid">
<div class="grid__item">
<h2>Portfolio Website</h2>
<p>
</p>
<a href="#">See project on Github</a>
</div>
<div class="grid__item">
<h2>Title2</h2>
<p>
</p>
<a href="#">See project on Github</a>
</div>
<div class="grid__item">
<h2>Title3</h2>
<p>
</p>
<a href="#">See project on Github</a>
</div>
<div class="grid__item">
<h2>Title4</h2>
<p>
</p>
<a href="#">See project on Github</a>
</div>
<div class="grid__item">
<h2>Title5</h2>
<p>
</p>
<a href="#">See project on Github</a>
</div>
<div class="grid__item">
<h2>Title6</h2>
<p>
</p>
<a href="#">See project on Github</a>
</div>
</div>
</section>
<footer class="page-footer">
<p>Find me on</p>
<div class="social-media">
<img src="img/twitter_icon.svg" alt="Twitter">
<img src="img/github_icon.svg" alt="Github">
<img src="img/linkedin_icon.svg" alt="LinkedIn">
</div>
</footer>
<script src="js/tota11y.min.js"></script>
</body>
</html>