-
Create your own resume using only HTML
-
[ For grading ]
index.html
Must contain proper html structure and use the following tags:- heading (h1, h2, ...)
- paragraph (p)
- div
- lists (ul-li / ol-li)
- image (img)
- links (a)
- table (th, tr, td, ...)
- form (form, input, button, ...)
Work & submit in a branch named html
-
Unleash your creativity
- Imagine / draw out how you want the content on your resume to look and implement it with CSS
- You may take inspiration from csszengarden.com to see what's possible with CSS
-
[ For grading ] Your submitted code must meet the following:
style.css
should be injected intoindex.html
as an external stylesheet- Some HTML elements in
index.html
should contain style or class attributes - CSS rules defined in
style.css
should contain atleast one- id selector,
- class selector, and
- element selector
- CSS rules defined in
style.css
should contain atleast one occurence of each of the following properties- font size
- font color
- margin
- padding
- width
- background color
Work & submit in a branch named css
-
Use media queries to make your site responsive for mobile devices
-
Test and debug using Chrome Developer Tools
-
[ For grading ] Your submitted code must meet the following:
responsive.css
should be injected intoindex.html
as an external stylesheetindex.html
should contain the viewport meta tagresponsice.css
should define the following media queries:- for devices with less than 500px of width
- for devices with more than 1000px of width
- for devices within any specified range of width
Work & submit in a branch named responsive