-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (72 loc) · 3.48 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Francis Akabaning Portfolio</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="header-content">
<img src="avator.jpg" alt="Avatar" class="avatar">
<h1>Francis Akabaning</h1>
<p>Cybersecurity Student at GCTU</p>
</div>
</header>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<main>
<section id="about">
<h2>About Me</h2>
<p>
I am Francis Akabaning, a second-year cybersecurity student at GCTU. I am passionate about ethical hacking, network security, and building simple yet effective web applications. My goal is to become a top-tier cybersecurity expert, ensuring the safety of digital systems worldwide.
I am a self-motivated learner with a deep interest in technology. I use both Windows and Arch Linux (with the LTS kernel) as operating systems. My journey includes exploring fields like embedded systems, ethical hacking, pentesting, Web 3.0, and blockchain (specifically Solidity).
I am currently advancing in cybersecurity through a NetAcad course, working on building web development skills with C++ on edX, and studying algorithms. I also have hands-on experience designing LANs and using tools like Packet Tracer and VirtualBox to set up environments like Kali Linux.
</p>
</section>
<section id="education">
<h2>Education</h2>
<p><strong>Institution:</strong> Ghana Communication Technology University (GCTU)</p>
<p><strong>Program:</strong> BSc in Computer Science (Cybersecurity Option)</p>
<p><strong>Year:</strong> Second Year, First Year</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>HTML, CSS, JavaScript</li>
<li>Building Simple Web Applications</li>
<li>Basic Network Security Concepts</li>
<li>Problem-Solving and Analytical Thinking</li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<p><strong>Web Application:</strong> Built a simple web app demonstrating basic functionality.</p>
<p><em>More projects to come soon!</em></p>
</section>
<section id="blog">
<h2>Blog/Insights</h2>
<p>Coming Soon! Here, I will share my thoughts, insights, and learning experiences related to cybersecurity and web development.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p><strong>Phone:</strong> 0594776243</p>
<p><strong>Personal Email:</strong> [email protected]</p>
<p><strong>Student Email:</strong> [email protected]</p>
<p><em>More contact details to be added soon!</em></p>
</section>
</main>
<footer>
<p>© 2025 Francis Akabaning. All rights reserved.</p>
</footer>
</body>
</html>