-
Notifications
You must be signed in to change notification settings - Fork 0
/
skills.html
87 lines (76 loc) · 4.69 KB
/
skills.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<nav class="navbar fixed-top navbar-expand-sm">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<div class="container-fluid">
<ul class="nav fixed-top nav-underline justify-content-center">
<li class="nav-item">
<a class="nav-link text-white-50" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-white-50" href="portfolio.html">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link active text-white-50" aria-current="page" href="#">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link text-white-50" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="middle-text">
<div class="typewriter">
<h1 id="desktop-text">Skills and Progression.</h1>
<h1 id="mobile-text">Skills.</h1>
</div>
</div>
<div class="skill-box">
<div class="progres-box">
<div class="flex-photo">
<img src="Images/hacker.png" alt="docker" height="33" width="33">
<h3>Security</h3>
</div>
<div class="progress" role="progressbar" aria-label="Success example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 50%">50%</div>
</div>
<p>I am a cyber security student so you would think my progression would be higher. But i think that 50% is reasonable. This is because cyber security is so big and it branches into alot of different things like defense, offense, web, network security etc. I feel like I only know the basics of everything. Last year I got my Jr penetration tester certificate from TryHackMe. I learned alot from TryHackMe an realised that security is much bigger than it looks.</p>
</div>
<div class="progres-box">
<div class="flex-photo">
<img src="Images/programming.png" alt="docker" height="33" width="33">
<h3>Programming</h3>
</div>
<div class="progress" role="progressbar" aria-label="Success example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-warning" style="width: 40%">40%</div>
</div>
<p>As a cyber security student I dont really program alot. That is why i put my progress at 40%. The only main language that i have learned is Python. I think I know Python well enough. This is because I have made alot of things in python like an API, backend(flask), scripts etc. The other langueges like C or Javascript I haven't learned. I am also not that good at coding in HTML and CSS so that is why I took this course.</p>
</div>
<div class="progres-box">
<div class="flex-photo">
<img src="Images/prof.png" alt="docker" height="33" width="33">
<h3>Professional Skills</h3>
</div>
<div class="progress" role="progressbar" aria-label="Success example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-success" style="width: 60%">60%</div>
</div>
<p>As a cyber security student I learn alot about professional skills at my universaty. I also have learned alot about professionalism during my internship at a cyber security company. Also at my universaty it is manditory to reflect on all the projects that I. When we reflect we use a method called STARR review. This helps reflecting. We reflect on concepts like communication, working in teams, leadership etc. This is why I think that I am at 60%.</p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>