-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcv.html
More file actions
89 lines (83 loc) · 3.29 KB
/
Copy pathcv.html
File metadata and controls
89 lines (83 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>John Smith - CV</title>
<link rel="stylesheet" href="cv.css">
</head>
<body>
<div class="container">
<header>
<h1>Tumusiime Hansen Andrew</h1>
<p class="contact-info">
Email: Tumusiime.hansen@example.com | Phone: (256) 123-4567 | Location: Kampala, Uganda
</p>
</header>
<section class="section">
<h2>Professional Summary</h2>
<p>
Experienced web developer with 1 years of experience in building responsive web applications.
Skilled in front-end and back-end technologies with a passion for creating user-friendly digital solutions.
</p>
</section>
<section class="section">
<h2>Work Experience</h2>
<div class="job">
<div class="job-header">
<h3>Senior Web Developer</h3>
<span class="date">2024 - Present</span>
</div>
<p class="company">Tech Solutions Inc.</p>
<ul>
<li>Led development of 10+ web applications using React and Node.js</li>
<li>Improved website performance by 40% through optimization techniques</li>
<li>Mentored junior developers and conducted code reviews</li>
</ul>
</div>
<div class="job">
<div class="job-header">
<h3>Web Developer</h3>
<span class="date">2023 - 2024</span>
</div>
<p class="company">Digital Co.</p>
<ul>
<li>Developed and maintained websites for 20+ clients</li>
<li>Collaborated with designers to implement UI/UX designs</li>
<li>Fixed bugs and implemented new features based on client feedback</li>
</ul>
</div>
</section>
<section class="section">
<h2>Skills</h2>
<div class="skills-list">
<span class="skill">HTML</span>
<span class="skill">CSS</span>
<span class="skill">JavaScript</span>
<span class="skill">React</span>
<span class="skill">Node.js</span>
<span class="skill">MongoDB</span>
<span class="skill">Git</span>
<span class="skill">Responsive Design</span>
</div>
</section>
<section class="section">
<h2>Education</h2>
<div class="education">
<div class="edu-header">
<h3>Bachelor of Science in Computer Science</h3>
<span class="date">2023</span>
</div>
<p class="university">Uganda Martyrs University </p>
</div>
</section>
<section class="section">
<h2>Certifications</h2>
<ul>
<li>AWS Certified Solutions Architect - Associate (2025)</li>
<li>Google Front-End Web Developer Certificate (2024)</li>
</ul>
</section>
</div>
</body>
</html>