-
Notifications
You must be signed in to change notification settings - Fork 0
/
experience.html
56 lines (55 loc) · 2.13 KB
/
experience.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="styleM.css">
<meta name="viewport" content="width=500px, initial-scale=0.5, user-scalable=no">
<title>Experience</title>
</head>
<body>
<header>
<button id="nav-toggle" class="nav-toggle-btn">
<i class="fas fa-bars"></i> <!-- Add appropriate icon for menu -->
</button>
<button id="theme-toggle" class="theme-toggle-btn">
<i class="fas fa-sun"></i>
</button>
<a href="#" class="logo"></a>
<nav>
<a href="index.html">About</a>
<a href="projects.html">Projects</a>
<a href="experience.html" class="active">Experience</a>
<a href="cv.html">Resume</a>
</nav>
</header>
<section class="home">
<div class="home-content">
<h1>My <span>Experience</span></h1>
<div class="experience-list">
<!-- Example Experience Entry -->
<div class="experience-entry">
<h3>Internship</h3>
<p>Amen Bank - 2023/2024</p>
<ul>
<li>Developed an application using Java, SQLite database, and JavaSwing to track client debts</li>
<li>Implemented functionality to export Excel tables and generate reports</li>
<li>Duration: 1 month</li>
</ul>
</div>
<!-- Example Experience Entry -->
<!-- <div class="experience-entry">
<h3>Job Title</h3>
<p>Company Name - Date</p>
<p>Description of work done, skills acquired, etc.</p>
</div> -->
<!-- Repeat for more experiences -->
</div>
</div>
</section>
</body>
<script src="themeToggle.js">
</script>
</html>