-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
133 lines (96 loc) · 4.51 KB
/
work.html
File metadata and controls
133 lines (96 loc) · 4.51 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mvkv | Work</title>
<link rel="stylesheet" href="css/bootstrap.css" text="text/css">
<link rel="stylesheet" href="style.css" text="text/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=Nunito:wght@200;300;400;500;600;800;900;1000&display=swap"
rel="stylesheet">
<style>
.scrollspy-example {
position: relative;
height: 200px;
overflow: auto;
}
.scrollspy-example ul {
position: sticky;
top: 0;
}
.scrollspy-example li {
margin: 0 0 10px;
font-weight: bold;
}
</style>
</head>
<body>
<nav class="navbar bg-light navbar-light mt-4 d-flex flex-row">
<div class="container-fluid">
<div class="col-2">
<a href="index.html" class="navbar-brand d-flex align-items-center">
<img src="assets/profile-avatar.png" alt="profile-picture-avatar" height="32px">
<div class="User-name px-2">
<p>Mvkv</p>
</div>
<img src="assets/verification-symbol.svg" alt="twitter-like-verification" width="24px">
</a>
</div>
<div class="col-8"></div>
<div class="col-2 d-flex justify-content-end">
<div class="theme-icon pe-3">
<img src="assets/theme-symbol.svg" alt="theme-toggle-icon" width="24px">
</div>
<div class="collapseable">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></i>
</span>
</button>
</div>
</div>
</div>
<div class="collapse navbar-collapse mt-1 ps-2" id="navbarSupportedContent">
<ul class="navbar-nav mb-2 mb-lg-0 px-5">
<li class="nav-item">
<a class="nav-link active border-bottom" aria-current="page" href="index.html">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link border-bottom" href="work.html">WORK</a>
</li>
<li class="nav-item">
<a class="nav-link border-bottom" href="contact.html">CONTACT</a>
</li>
</ul>
</div>
</nav>
<section class="work">
<div class="container h-100">
<h2 class="my-4">Work</h2>
<div class="row">
<div class="col-sm-8 col-md-6">
<div id="project-list" class="list-group">
<a class="list-group-item list-group-item-action" href="assets/portfolio-project-design.png">Mvkv</a>
<a class="list-group-item list-group-item-action" href="assets/badbunny-project-design.png">Bad Rabbits</a>
<a class="list-group-item list-group-item-action" href="assets/tigzozo-project-design.png">Tigzozo</a>
<a class="list-group-item list-group-item-action" href="assets/ekhaya-project-design.png">Ekhaya</a>
<a class="list-group-item list-group-item-action" href="assets/flexbox-project-design.png">Flexbox</a>
<a class="list-group-item list-group-item-action" href="assets/nyamatusi-project-design.png">Nyamatutsi</a>
<button class="btn w-100 mt-2" onclick="window.open('assets/resume.pdf', '_blank')">
<div class="d-flex justify-content-start ms-1">
<p>SEE MY CV</p>
</div>
</button>
</div>
</div>
</div>
</div>
</section>
<script src="js/bootstrap.js"></script>
<script src="js/jquery-3.4.1.min.js"></script>
</body>
</html>