-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
78 lines (69 loc) · 2.78 KB
/
about.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
<!DOCTYPE html>
<!-- test commit2 -->
<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">
<link rel="stylesheet" href="./style.css"> <!-- Ensure this is the merged CSS file -->
<meta property="og:title" content="technet.gay">
<meta property="og:description" content="A collection of nerd stuff, most of which is garbage.">
<meta property="og:url" content="technet.gay">
<meta property="og:site_name" content="technet">
<meta name="article:author" content="technet">
<title>Technet.gay</title>
</head>
<body>
<!-- header -->
<div class="header">
<div class="header-content">
<div class="technet"><a href="/" class="menu-link">Technet.gay</a></div>
<!-- Full menu container for larger screens -->
<div class="menu-container">
<div class="menu-buttons"><a href="/writeups" class="active">Write-Ups</a></div>
<div class="menu-buttons"><a href="/projects" class="active">Projects</a></div>
<div class="menu-buttons"><a href="/about" class="active">About</a></div>
</div>
<!-- Hamburger icon for mobile, aligned with the Technet.gay header -->
<img src="assets/ham.png" alt="Menu" class="ham" onclick="toggleMenu()" />
</div>
<!-- Hidden menu for mobile screens -->
<div id="mobileMenu" class="menu">
<a href="/writeups">Write-Ups</a>
<a href="/projects">Projects</a>
<a href="/about">About</a>
</div>
</div>
<!-- content -->
<div class="frame-1">
<img class="pixil-frame-0-5-1" src="assets/meow-cat.png" alt="Pixel art image of Cat" />
<div class="text-container">
<div class="page-header">
Hey!
</div>
<div class="main-text">
My name is Technet, I am an in-progess Cybersecurity Analyst, with goals to be a Pentester. I currently attend a four year university with a Major in Cybersecurity.
<br><br>
I currently spend the day doing HackTheBox and reading up on CVE's and studying
<br><br>
I spent far too long building a website, and do not regret it, You will see some of my projects, my write-ups on certain things, and probably other things once I gain motivation to work on this again.
<br><br>
Here is my Contact information, for those who need to find me <br>
<br> Email: [email protected]
<br> Twitter: Technet8394
<br> Discord: teknet
<br> Github: Technet8394
</div>
</div>
</div>
<script>
function toggleMenu() {
var menu = document.getElementById('mobileMenu');
if (menu.style.display === 'block') {
menu.style.display = 'none';
} else {
menu.style.display = 'block';
}
}
</script>
</body>
</html>