Creating Skills Table
Creating a Skills Table
You're doing an excellent job building your About Me webpage! With navigation now in place, your visitors can easily explore different sections. Next, we’ll add more depth to your webpage by creating a skills table. This table will showcase your skills, proficiency, and experience in a well-organized format.
Integrate a Skills Table
To create a skills table, we'll use the <table> element along with its related elements.
Let's see how the structure a basic table will fit into your webpage:
In the code snippet above, we've added a <table> element within the Skills section. The table consists of three columns: Skill, Proficiency, and Years of Experience. The <thead> element contains a row with column headings, while the <tbody> element contains rows with data.
In addition, pay attention to the < symbol in the Years of Experience column. This is an HTML entity that represents the < character. Using HTML entities ensures that the browser interprets the character correctly.
