-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
96 lines (91 loc) · 4.64 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your Name - About Me</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap" rel="stylesheet" />
<!-- Link to external CSS file -->
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="index.html">
<img src="https://i.ibb.co/z4QWGJZ/KTM-Edu-Tech-Logo.png" alt="KTM EduTech Logo" class="logo-large">
<img src="https://i.ibb.co/JvXkFbv/ktm-favicon.png" alt="KTM EduTech Logo" class="logo-small">
</a>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="career.html">Career</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>
<main>
<section id="about" class="container">
<h1>About Me</h1>
<div class="about-section">
<h2>Biography and Professional Journey</h2>
<p>
I am an experienced computer science educator and web developer with a passion for creating
innovative web solutions. Over the years, I have honed my skills in developing interactive and
user-friendly websites that cater to the unique needs of my clients and students.
</p>
<p>
My journey in the world of technology began with a deep interest in computer science, which
eventually led me to pursue a career in education and web development. I have dedicated myself
to teaching computer science concepts, inspiring the next generation of tech enthusiasts, and
continually expanding my knowledge in the ever-evolving field of web development.
</p>
</div>
<div class="about-section">
<h2>Expertise and Skills</h2>
<p>
Throughout my career, I have acquired a diverse set of skills and expertise in various
programming languages and web technologies. My proficiency includes, but is not limited to:
</p>
<ul>
<li>HTML, CSS, JavaScript</li>
<li>Front-end frameworks such as React and Angular</li>
<li>Back-end technologies including Node.js and PHP</li>
<li>Database management with SQL and MongoDB</li>
<li>Responsive design and mobile-first development</li>
</ul>
</div>
<div class="about-section">
<h2>Achievements</h2>
<p>
I have a proven track record in developing websites that are not only visually appealing but
also highly functional and user-friendly. My projects range from personal portfolios and
business websites to complex web applications, all designed with the end-user in mind.
</p>
</div>
<div class="about-section">
<h2>Vision and Goals</h2>
<p>
I am passionate about using my skills to make a positive impact. Whether it's through teaching,
developing web solutions, or engaging in technology-focused extracurricular activities and
after-school programs, my goal is to connect with students, clients, and potential employers who
share my vision of leveraging technology for the greater good.
</p>
</div>
</section>
</main>
<footer>
<p>© <span id="year"></span> | KTM EduTech</p>
</footer>
<!-- Link to JS file before </body> -->
<script src="assets/js/scripts.js"></script>
</body>
</html>