-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (108 loc) · 4.12 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
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
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Malith Praveen Rajapaksha - Cybersecurity Portfolio</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
</head>
<body>
<div id="matrix-container">
<canvas id="matrix-canvas"></canvas>
</div>
<header>
<div class="container">
<h1>Malith Praveen Rajapaksha</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<div class="hero">
<div class="container">
<img src="profile.jpg" alt="Your Image">
<div class="intro">
<h2 class="animated-title">Hello, I'm Malith Praveen Rajapaksha</h2>
<h3>And I'm a <span id="pro-text"></span></h3>
</div>
</div>
</div>
<div class="content-wrapper">
<section id="about">
<div class="container">
<h2>About Me</h2>
<p>Welcome to my cybersecurity portfolio. My name is Malith Praveen Rajapaksha, and I am a cybersecurity specialist with expertise in network security, ethical hacking, and information assurance.This portfolio showcases my projects, skills, and professional journey in the field of cybersecurity.</p>
</div>
</section>
<section id="skills">
<div class="container">
<h2>Skills</h2>
<ul>
<li>Network Security</li>
<li>Ethical Hacking</li>
<li>Information Assurance</li>
<li>Penetration Testing</li>
<li>Cybersecurity Analysis</li>
</ul>
</div>
</section>
<section id="projects">
<div class="container">
<h2>Projects</h2>
<div class="project-card">
<img src="project1.jpg" alt="Project 1">
<div class="project-info">
<h3>Project 1</h3>
<p>Description of Project 1.</p>
<a href="https://github.com/yourusername/project1" target="_blank">View on GitHub</a>
</div>
</div>
<div class="project-card">
<img src="project2.jpg" alt="Project 2">
<div class="project-info">
<h3>Project 2</h3>
<p>Description of Project 2.</p>
<a href="https://github.com/yourusername/project2" target="_blank">View on GitHub</a>
</div>
</div>
<div class="project-card">
<img src="project3.jpg" alt="Project 3">
<div class="project-info">
<h3>Project 3</h3>
<p>Description of Project 3.</p>
<a href="https://github.com/yourusername/project3" target="_blank">View on GitHub</a>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact</h2>
<!-- Add your contact information here -->
</div>
</section>
</div>
<footer>
<div class="container">
<p>© 2024 Malith Praveen Rajapaksha</p>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="script.js"></script>
<script>
var typed = new Typed("#pro-text", {
strings: ["Ethical Hacker"],
typeSpeed: 100,
backSpeed: 100,
backDelay: 1000,
loop: true
});
</script>
</body>
</html>