Blog Project: My Skills

HTML Fundamentals
HTML Basics
Blog Project: My Skills
70
1/1
   

My Skills



Back to our blog! Let's create the My Skillssection, which is an unordered list of languages you know.
Reminder: Use the <ul> tag, in which each item is represented by the <li> tag, to create an unordered list. Take a look at the code:
<h1><span>My Skills</span></h1>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
Try It Yourself

We'll learn how to add progress bars to each of the skills in the following module.
TASK
1. Create your own My Skills section.
2. Use the <a> tag to make each list item a link.

Comments