You will create a resume page and contact form using HTML. After completing each bullet point in the requirements, you should commit and push your changes. To commit a change, you can follow the following steps:
- Add files to staging:
git add .
- Commit staged files: `git commit -m ''
- Push changes to GitHub
git push
- Fork this repository
- Clone your repository to your local machine
git clone
- Open the project in your text editor
- Create HTML pages in the root directory
- Create a folder named 'images' and add image files to this directory
A list of expected technology to be used in this assignment
- HTML
- Web Browser
Create a web page that displays your resume. The web page should consist of the following sections:
- Name
- Objective (3 sentence minimun)
- Work Experience (no less than 2 previous/present jobs)
- Education
- Skills (3 skills minimum)
- LinkedIn Profile Address
- Profile Image
- Any awards and/or certificates if applicable
Now is time create a 2nd page. This page will contain a contact form. The form should have the following fields:
- First Name (text field, limit of 30 characters)
- Last Name (text field, limit of 30 characters)
- Contact phone number (text field)
- Phone number type: Landline, Mobile (radio button)
- Contact email (text field, limit of 50 characters)
- How did you hear about us: Search Engine, Social Media, Recruiter (drop down)
- Interest for contacting: A list of your skills (check box)
- Message (text area, limit of 250 characters)
- Use of labels with all form fields
- Use of validation
Create a pull request from your project GitHub page
Happy Hacking!