-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
173 lines (122 loc) · 6.32 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Resume</title>
</head>
<body>
<h1>Samuel Kikule</h1>
<img src="./assets/images/myphoto.jpg" alt="profilephoto" height="100">
<h2>Summary</h2>
<p>I am a Hardworking, Diligent individual with a rich technological background founded in a Computer Science Bachelors Degree and a vast experience with Web Design and Development for small businesses and Start-Ups. </p>
<hr>
<h2>Education</h2>
<ul>
<li>Bachelor's Degree:
<ul>
<li>Bachelor of Science in Computer Science - (2022 - 2025)</li>
</ul>
</li>
<li>High School Education:
<ul>
<li>Kings College Budo</li>
<li>Hilton High School - Mukono</li>
</ul>
</li>
<li>Elementary Education:
<ul>
<li>Lungujja Primary School</li>
<li>Buddo Junior School, Kabinja</li>
<li>Namirembe Parents Primary School</li>
</ul>
</li>
</ul>
<hr>
<h2>Work Experience</h2>
<ul>
<li>Intern / Student Trainee at DICTS - Makerere University. <br>
June - August 2024.
<ul>
<li></li>
<li>Setup and Configuring Brand New Laptop Workstations for Makerere Staff</li>
<li>
Worked on the Students Webmail SSO website Front End.
</li>
<li>Setup Servers - Installing Servers Operating Systems - Proxmox and IDRAC</li>
</ul>
</li>
<br>
<li>Free Lance Frontend WordPress Web Designer and Web Developer (CMS). <br>
August 2024 - Present
</li>
</ul>
<hr>
<h2>Skills</h2>
<ul>
<li>Design Tools - Figma, AdobexD</li>
<li>Content Management Systems - WordPress and Webflow</li>
<li>Web Development
<ol>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ol>
</li>
</ul>
<hr>
<h2>Awards and Certifications</h2>
<ol>
<li>Udemy Course Certifications</li>
<li>Bootcamps</li>
</ol>
<hr>
<h2>Other</h2>
<ul>
<li><a href="./public/about.html">About Me</a></li>
<li><a href="./public/contact.html">Contact Me</a></li>
<li>Spoken Languages:
<ul>
<li>Luganda</li>
<li>English</li>
</ul>
</li>
</ul>
<footer>
<p>
Samuel Kikule. All Rights Reserved. Copyright
</p>
</footer>
</body>
</html>
<!--
Project Specifications
Create an HTML file named index.html.
Use the <!DOCTYPE html> declaration at the beginning of the file to indicate that it's an HTML document.
Create a head section that includes a title element with the text "My Resume".
Inside the body section, write HTML code to create an online resume covering the following aspects:
Summary or objective statement
Education (list degrees, schools, and dates)
Work experience (list job titles, employers, dates, and responsibilities)
Skills (list relevant skills or areas of expertise)
Awards, certifications, or other achievements (list any relevant awards, certifications, or other accomplishments)
Use appropriate HTML tags to format the content of each section, such as h1 for section headings and ul or ol for lists.
Use HTML tags to add a profile photo of yourself.
Use relevant anchor tags to create a multi-page website, listing other aspects of your resume such as Hobbies and Contact details.
Add a footer element with your name and any copyright information or other disclaimers. (Hint: use the MDN docs for things you don't know how to do: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer
Save the index.html file and open it in a web browser to ensure that it displays correctly.
Add your website to your GitHub to start building your portfolio.
Publish your website using GitHub pages and share it here (in the Q&A) with other students.
Comment and make suggestions to other students' projects.
Example
https://appbrewery.github.io/capstone-1-example
Requirements
In order to keep the project within scope (time, energy, resource), you can only use HTML to complete thing project. Even if you know CSS and JS (which we're assuming you don't yet), you are expected to only write the website using HTML.
Imagine you are a professional developer working on this project. There will be things you don't know, things you want to do but haven't yet learnt how to. As a professional developer, you need to know the limits of your abilities and look up other things in Google, MDN docs, the internet.
FAQs
1. Can I use these Capstone projects in my job interviews?
Yes! That's the point of these capstone projects. Unlike course projects, which have solution code and video walkthroughs, Capstone Projects are meant to be entirely your "own work". There are over a million students who have enrolled on this web development course worldwide. If you add a course project to your portfolio, it's very likely that your client will know it's from this course. The capstone projects on the other hand, have no solution code, no walk through, no design specs. It's it purely your creation So it can definitely be counted as your own work and be added to your portfolio.
When I hire developers, I always ask for a portfolio. I consider what they have built by themselves to be far more important than which University they went to or if they have a computer science degree. Many of my friends who are CEOs in multi-nationals and startups agree.
2. What if I don't remember how to do something, even though I watched all the videos?
Watching a video is often not enough to learn a skill. That's why these capstone projects are a great opportunity to identify your weak points. While you're building, you'll find yourself stuck or forgetting how to do things. Great! It's then time to review previous lessons or online documentation to fill your knowledge gaps.
-->