-
Notifications
You must be signed in to change notification settings - Fork 0
/
whoami.html
71 lines (68 loc) · 3.44 KB
/
whoami.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nintails/whoami</title>
<!-- Bootstrap CSS link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<!-- Google fonts -->
<style>
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap');
</style>
<!-- Stylesheet -->
<link rel="stylesheet" href="index.css">
</head>
<body class="d-flex flex-column h-100">
<!-- navbar -->
<nav class="navbar navbar-expand-lg bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/index.html">Ninfosec</a>
<!-- Button when screen is resized -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="/index.html">/home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/articles.html">/articles</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="/whoami.html">whoami</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Content -->
<div class="container">
<h1>About Me:</h1>
<p>Hi, I'm Nintails. A student at Dundee University and an avid fan of cybersecurity. I'm most
interested in web exploitation and red teaming. I'm looking to attain an OSCP around the time I graduate and
this blog is my way of documenting and motivating myself to achieve this goal.</p>
<img src="https://picsum.photos/1300/300" alt="Card image cap">
<p>In my free time, I play video games competitvely and I've played in various LANs for Team Fortress 2, I've also done
work as a mentor teaching new players how to succeed in TF2. I'm also a GM overwatch 2 player. Along with this I'm
also a member of the Dundee esports society. I also enjoy rock climbing/bouldering. Recently I've been going to the
gym which has been alot of fun too.
</p>
</div>
<!-- Footer -->
<footer class="footer mt-auto py-3 bg-dark">
<div class="container ms-0">
<a href="https://github.com/Nintails-TF"><img src="/images/github.png" alt="My GitHub link"></a>
<a href="https://www.linkedin.com/in/alex-glen-59105825b/"><img src="/images/linkedin.png"
alt="My LinkedIn link"></a>
<a href="mailto: nintails@ninfosec.com"><img src="/images/gmail.png" alt="My contact email"></a>
</div>
</footer>
<!-- bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous">
</script>
</html>