-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignments.html
107 lines (95 loc) · 3.94 KB
/
assignments.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
<!DOCTYPE html>
<html lang="nl-NL">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
<title>Portfolio | Sander Albers</title>
</head>
<body>
<!-- HEADER_START -->
<div class="container-fluid bg-dark">
<div class="btn-group p-1" role="group" aria-label="Accounts">
<button type="button" class="btn btn-dark">
<a href="https://github.com/shcalbers">
<img class="img-fluid" src="./img/accounts/github.png">
</a>
</button>
<button type="button" class="btn btn-dark">
<a href="https://nl.linkedin.com/in/sander-hielke-cornelis-albers">
<img class="img-fluid" src="./img/accounts/linkedin.png">
</a>
</button>
</div>
</div>
<div class="carousel slide" id="header" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#header" data-slide-to="0" class="active"></li>
<li data-target="#header" data-slide-to="1"></li>
<li data-target="#header" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./img/carousel/slide0.png">
</div>
<div class="carousel-item">
<img src="./img/carousel/slide1.png">
</div>
<div class="carousel-item">
<img src="./img/carousel/slide2.png">
</div>
</div>
<a class="carousel-control-prev" href="#header" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous></span>
</a>
<a class="carousel-control-next" href="#header" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next></span>
</a>
</div>
<nav class="navbar navbar-expand-sm navbar-dark bg-dark" style="border-bottom: 1px solid rgba(10, 10, 10, 0.5);">
<a class="navbar-brand" href="index.html">
<span class="fas fa-book" aria-hidden="true"></span>
Portfolio
</a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">CV</a>
</li>
<li class="nav-item">
<a class="nav-link" href="products.html">Beroepsproducten</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="assignments.html">Opdrachten</a>
</li>
<li class="nav-item">
<a class="nav-link" href="reflections.html">Reflecties</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</nav>
<!-- HEADER_END -->
<!-- CONTENT_START -->
<div class="container-fluid h-100" id="content">
<div class="row h-100">
<div class="col-sm h-100"></div>
</div>
</div>
<!-- CONTENT_END -->
<!-- FOOTER_START -->
<footer class="container-fluid bg-dark text-right" style="border-top: 1px solid rgba(10, 10, 10, 0.5);">
<a class="text-secondary" href="#">
<span class="fa fa-arrow-up fa-2x" aria-hidden="true"></span>
</a>
</footer>
<!-- FOOTER_END -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
</html>