forked from ciarasnijders/Portfolio-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
work.html
113 lines (98 loc) · 4.97 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
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ciara's Portfolio of Work</title>
<meta name="description" content="This website will contain all information relating to Ciara's portfolio.">
<link rel="icon" type="image/jpeg" href="img/favicon-32x32.png" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header class="page-header">
<!-- Add logo here -->
<img src="img/Ciara_Snijders_logo.png" alt="Personal logo of Ciara Snijders, a circular text logo with my initials in the center and surrounded by text reading Ciara Snijders, Web Developer" class="page-header__item" width="60">
<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">Home</a>
</li>
<li role="presentation">
<a href="about.html" role="menuitem" class="navigation-list__item">About me</a>
</li>
<li role="presentation">
<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 class="page-container">
<h2>Work</h2>
<br>
<div class="project-list">
<div class="card border-dark project-list__item" style="max-width: 18rem;">
<div class="card-header">Title Of Project 1</div>
<div class="card-body text-dark">
<p class="card-text">A short description of project 1.</p>
<a href="#">Link to project 1</a>
</div>
</div>
<div class="card border-dark project-list__item" style="max-width: 18rem;">
<div class="card-header">Title Of Project 2</div>
<div class="card-body text-dark">
<p class="card-text">A short description of project 2.</p>
<a href="#">Link to project 2</a>
</div>
</div>
<div class="card border-dark project-list__item" style="max-width: 18rem;">
<div class="card-header">Title Of Project 3</div>
<div class="card-body text-dark">
<p class="card-text">A short description of project 3.</p>
<a href="#">Link to project 3</a>
</div>
</div>
<div class="card border-dark project-list__item" style="max-width: 18rem;">
<div class="card-header">Title Of Project 4</div>
<div class="card-body text-dark">
<p class="card-text">A short description of project 4.</p>
<a href="#">Link to project 4</a>
</div>
</div>
<div class="card border-dark project-list__item" style="max-width: 18rem;">
<div class="card-header">Title Of Project 5</div>
<div class="card-body text-dark">
<p class="card-text">A short description of project 5.</p>
<a href="#">Link to project 5</a>
</div>
</div>
<div class="card border-dark project-list__item" style="max-width: 18rem;">
<div class="card-header">Title Of Project 6</div>
<div class="card-body text-dark">
<p class="card-text">A short description of project 6.</p>
<a href="#">Link to project 6</a>
</div>
</div>
</div>
</section>
<footer class="page-footer">
<p>
Find me on
</p>
<div class="social-media">
<!-- Add Github logo image here -->
<a href="https://github.com/ciarasnijders"> <img src="img/img_svg/github_logo.svg" alt="Official Github logo"> </a>
<!-- Add LinkedIn logo image here -->
<a href="https://www.linkedin.com/in/ciara-snijders/"> <img src="img/img_svg/linkedin_logo.svg" alt="Official LinkedIn logo"> </a>
</div>
</footer>
<script src="js/tota11y.min.js"></script>
</body>
</html>