-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (78 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tharin Edirisinghe</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<header>
<h1>Tharin Edirisinghe</h1>
<h3>IT Undergraduate | ICT Teacher | Content Creator</h3>
</header>
<nav>
<ul>
<li>
<b><a href="index.html">About Me</a></b>
</li>
<li>
<b><a href="projects.html">Projects</a></b>
</li>
<li>
<b><a href="contact.html">Contact</a></b>
</li>
</ul>
</nav>
<section id="about">
<h1>About Me</h1>
<div class="about-container">
<img src="IMG-20230221-WA00451.png" alt="Tharin Edirisinghe" />
<div class="about-text">
<p>
Hi, I'm Tharin, an undergraduate student at the
<b
>Faculty of Information Technology, University of Moratuwa, Sri
Lanka</b
>.
</p>
<p>
I teach ICT for
<b>G.C.E Advanced Level and G.C.E Ordinary Level</b> students,
guiding them to success in their exams.
</p>
<p>
I'm also a <b>social media content creator</b>, sharing insights and
tutorials across various fields.
</p>
<p
style="
font-family: IBM Plex Mono, monospace;
font-weight: 100;
font-style: normal;
"
>
Thank you for visiting my portfolio. Feel free to explore my work
and connect with me for collaborations or inquiries.
</p>
</div>
</div>
</section>
<footer>
<p>© 2024 Tharin Edirisinghe</p>
<p>
Follow me on:
<a
href="https://www.linkedin.com/in/tharin-edirisinghe-838a54223"
target="_blank"
>LinkedIn</a
>
|
<a href="https://github.com/tharinedirisinghe" target="_blank"
>GitHub</a
>
</p>
</footer>
<script src="index.js"></script>
</body>
</html>