-
Notifications
You must be signed in to change notification settings - Fork 0
/
work.html
101 lines (100 loc) · 4.73 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
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Work</title>
<!-- Need to fix this favicon and find a working source or just use Wiki favicon as placeholder again-->
<link rel="shortcut icon" href="img/favicon12.ico" 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 rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playpen+Sans&family=Space+Grotesk&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.production.css">
</head>
<body>
<!--Header including the logo and the main navigation-->
<header class="page-header">
<!--Add Logo here-->
<img src="img/justice-rivera.png" alt="justice" 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">Home</a>
</li>
<li role="presentation">
<a href="about.html" role="menuitem" class="navigation-list__item">About</a>
</li>
<li>
<a href="work.html" role="menuitem" class="navigation-list__item navigation-list__item--active">Work</a>
</li>
<li role="presentation">
<a href="contact.html" role="menuitem" class="navigation-list__item">Contact</a>
</li>
</ul>
</nav>
</header>
<!--Main Content-->
<section>
<h1>Work</h1>
<div class="grid">
<!--Grid items will live here-->
<div class="grid__item">
<h2>Project One</h2>
<p>
Within this project, I was responsible for the frontend. It's written in React,js. Additonally, I've created the HTML and CSS templates.
</p>
<a href="https://justicetrace.github.io/Achievement-1-Project/index.html">See project on Github</a>
</div>
<div class="grid__item">
<h2>Project Two</h2>
<p>
Within this project, I was responsible for the frontend. It's written in React,js. Additonally, I've created the HTML and CSS templates.
</p>
<a href="https://justicetrace.github.io/Achievement-1-Project/index.html">See project on Github</a>
</div>
<div class="grid__item">
<h2>Project Three</h2>
<p>
Within this project, I was responsible for the frontend. It's written in React,js. Additonally, I've created the HTML and CSS templates.
</p>
<a href="https://justicetrace.github.io/Achievement-1-Project/index.html">See project on Github</a>
</div>
<div class="grid__item">
<h2>Project Four</h2>
<p>
Within this project, I was responsible for the frontend. It's written in React,js. Additonally, I've created the HTML and CSS templates.
</p>
<a href="https://justicetrace.github.io/Achievement-1-Project/index.html">See project on Github</a>
</div>
<div class="grid__item">
<h2>Project Five</h2>
<p>
Within this project, I was responsible for the frontend. It's written in React,js. Additonally, I've created the HTML and CSS templates.
</p>
<a href="https://justicetrace.github.io/Achievement-1-Project/index.html">See project on Github</a>
</div>
<div class="grid__item">
<h2>Project Six</h2>
<p>
Within this project, I was responsible for the frontend. It's written in React,js. Additonally, I've created the HTML and CSS templates.
</p>
<a href="https://justicetrace.github.io/Achievement-1-Project/index.html">See project on Github</a>
</div>
</div>
</section>
<!--Footer with links to social media profiles-->
<footer class="page-footer">
<p>Find me on</p>
<div>
<a href="https://github.com/justicetrace" target="_blank">
<img src="img/6214513_github_logo_icon.svg" alt="Github">
</a>
<a href="https://www.linkedin.com/in/justice-rivera-603a38292/" target="_blank">
<img src="img/5282542_linkedin_network_social network_linkedin logo_icon.svg" alt="LinkedIn">
</a>
</div>
</footer>
<script src="js/tota11y.min.js"></script>
</body>
</html>