Exercise - Lists and links
In this exercise, you add the rest of the information to your resume. You include your email address, social media links, and list of experience. The exercise uses generic text, but you should feel free to customize the content to match your details.
Add Your Email Address and Social Media
Let's start by adding your email address and social media links to your resume.
- Return to the browser window with vscode.dev.
Note
If you closed your browser or CodeSwing, follow these steps to reopen your CodeSwing project.
- Open vscode.dev. If you already have your html file open and just need to reopen CodeSwing, skip to step 6.
- Select Open Folder.
- Navigate to the resume folder you created earlier and select Select Folder.
- When prompted to Let site view files, select View Files.
- In the Explorer pane on the left, select the index.html file.
- Press Ctrl + Shift + P on Windows or Linux or Cmd + Shift + P on Mac.
- In the box that appears at the top, type
codeswing: open swing
and press enter or return on your keyboard. - When prompted, select the resume folder you selected earlier.
Inside index.html, and below the comment that reads
<!-- email address -->
, add the following HTML to add a link to your email, replacing your-email@example.com with your email address:<a href="mailto:your-email@example.com">your-email@example.com</a>
The page automatically updates with your email address.
Below the comment that reads
<!-- social media -->
, add the following HTML to create the list:<ul> <li><a href="https://github.com/microsoft>">GitHub</a></li> <li><a href="https://www.linkedin.com/company/microsoft>">LinkedIn</a></li> <li><a href="https://x.com/microsoft>">X</a></li> </ul>
The page updates to display the list of social media accounts you add.
Adding Education and Experience
With the contact information added, you'll now finish adding to your resume by including education and other experience.
Inside index.html, below the comment that reads
<!-- education -->
, add the following HTML for your education information:<h3>School name</h3> <h4>Major</h4> <ul> <li>GPA: 4.0</li> <li>Years attended</li> </ul>
Below the comment that reads
<!-- experience -->
, add the following HTML for your experience:<h3>Company name</h3> <h4>Title</h4> <h4>Dates</h4> <ul> <li>Cool accomplishment</li> <li>Cool accomplishment</li> </ul> <h3>Cool hackathon</h3> <h4>Project title</h4> <h4>Dates</h4> <ul> <li>Cool accomplishment</li> <li>Cool accomplishment</li> </ul>
The window updates with your new information.