-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (80 loc) · 3.63 KB
/
index.html
File metadata and controls
91 lines (80 loc) · 3.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Lakindu</title>
<link rel="stylesheet" href="styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="script.js" defer></script>
<link rel="icon" href="imgs/favicon.jpeg" type="image/x-icon">
</head>
<body>
<header>
<h1>Welcome to Lakindu's Portfolio</h1>
<nav>
<ul>
<li><a href="https://www.linkedin.com/in/lakindu-dissanayake-3aa868200/" target="_blank"><img src="imgs/linkedin-original.svg" alt="LinkedIn" class="icon"></a></li>
<li><a href="https://github.com/lakindubd" target="_blank"><img src="imgs/newgithub.webp" alt="GitHub" class="icon"></a></li>
<li><a href="#" id="emailIcon"><img src="imgs/mail-icon.png" alt="Email" class="icon"></a></li>
</ul>
</nav>
</header>
<!-- Theme Toggle Switch -->
<div class="theme-switch-wrapper">
<img src="imgs/theme.png" alt="Theme Icon" class="theme-icon">
<label class="theme-switch">
<input type="checkbox" id="themeToggle">
<span class="slider round"></span>
</label>
</div>
<div id="notification" class="notification">Email copied to clipboard!</div>
<div class="container">
<section class="about-me">
<h2>About Me</h2>
<p>Hello! I'm Lakindu, a passionate computer science student and cybersecurity enthusiast. I have experience in various programming languages and enjoy working on projects in various domains.</p>
</section>
<section class="skills animate-on-scroll">
<h2>Programming Languages</h2>
<ul>
<li>Python</li>
<li>Java</li>
<li>C++</li>
<li>HTML, CSS, JavaScript</li>
<li>SQL</li>
</ul>
</section>
<section class="projects animate-on-scroll">
<h2>Projects</h2>
<ul>
<li>SuperPrice - A price matching and delivery app built using Java and JavaScript.</li>
<li>Farmo Subscription System - Automated the subscription process for the devices using Python.</li>
<li>Minecraft with Prolog - Logic programming using SWI-Prolog to create reasoning tools for game agents.</li>
</ul>
</section>
<section class="contact-me">
<h2>Contact Me</h2>
<form id="contactForm" action="https://docs.google.com/forms/u/0/d/e/1FAIpQLSeNp9oMSYfmdPsffX7-cWkQHOuf9TAHOE7QVOUhPupIKfCvHQ/formResponse" method="POST" target="hidden_iframe">
<label for="name">Name:</label>
<input type="text" id="name" name="entry.541824981" required>
<label for="email">Email:</label>
<input type="email" id="email" name="entry.294373417" required>
<p id="emailValidationResult"></p> <!-- Email validation result placeholder -->
<label for="description">Description:</label>
<textarea id="description" name="entry.1415234793" required></textarea>
<button type="submit">Submit</button>
</form>
<div id="formNotification" class="notification">Message sent!</div>
</section>
<section class="resume">
<h2>Download My Resume</h2>
<a href="CV Lakindu.pdf" download="Lakindu_Resume.pdf" class="download-button">Download Resume</a>
</section>
</div>
<footer>
<p>© 2024 Lakindu | All Rights Reserved</p>
</footer>
<button id="backToTop" style="display: none;">Back to Top</button>
<iframe name="hidden_iframe" style="display:none;"></iframe>
</body>
</html>