Now it's time to apply what you've learned! Build an HTML page that represents your professional profile.
1. Structure: Valid HTML with proper head/body tags
2. Content:
- Your name as the main heading (<h1>)
- A brief bio paragraph (<p>)
- A list of your skills (<ul>)
- Links to your profiles (GitHub, LinkedIn, etc.) using <a> tags
3. Polish: Proper formatting and semantic HTML
<h1>John Developer</h1>
<p>Full-stack developer learning web technologies</p>
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
// ...<h2> for section headingsNow it's time to apply what you've learned! Build an HTML page that represents your professional profile.
1. Structure: Valid HTML with proper head/body tags
2. Content:
- Your name as the main heading (<h1>)
- A brief bio paragraph (<p>)
- A list of your skills (<ul>)
- Links to your profiles (GitHub, LinkedIn, etc.) using <a> tags
3. Polish: Proper formatting and semantic HTML
<h1>John Developer</h1>
<p>Full-stack developer learning web technologies</p>
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
// ...<h2> for section headings