- Create an HTML file named
index.html. - Use the
<!DOCTYPE html>declaration at the beginning of the file. - Create a head section that includes a title element with the text "My Resume".
- Inside the body, write HTML code to create an online resume that includes:
- Summary or objective statement
- Education (list degrees, schools, and dates)
- Work experience (job titles, employers, dates, responsibilities)
- Skills (relevant skills or expertise)
- Awards, certifications, or achievements
- Use appropriate HTML tags to format each section (e.g.,
h1for main headings,ulorolfor lists). - Add a profile photo using the HTML
<img>tag. - Use anchor tags (
<a>) to link to additional pages such as Hobbies and Contact. - Add a footer element with your name and any copyright information or 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 file and open it in a browser to ensure it displays correctly.
- Add the website to GitHub as part of your portfolio.
- Publish it using GitHub Pages and share the link in the Q&A.
- Comment on and make suggestions for other students’ projects.
https://appbrewery.github.io/capstone-1-example
- To keep the project within scope, you must only use HTML — no CSS or JavaScript.
- Approach this as a professional developer:
Look things up using Google, MDN docs, and other resources when needed.