-
Notifications
You must be signed in to change notification settings - Fork 2
AI‐07
Saúl Castillo edited this page Sep 30, 2024
·
2 revisions
On the index.html file:
- Define the document type at the top of the file by typing in
<!DOCTYPE html>. - Your file should have a basic html boilerplate code that should contain:
- A
<head>element containing: a <title> element and at least two elements. - A
<body>element containing:- A
<h1>header containing your name. - A
sectionelement containing: A<h2>header containing the word "About", followed by a<p>element containing a paragraph about yourself. The section should have an id attribute equal to "About". - A
sectionelement containing: A<h2>header containing the word "Experience", followed by a<ul>list containing your listed past experiences that highlight your value. The section should have an id attribute equal to "Experience". - A
sectionelement containing: A<h2>header containing the word "Connect", followed by at least 2<a>elements containing your social media links. You are free to wrap the<a>elements inside a list. The section should have an id attribute equal to "Connect".
- A
- A
- Stretch goal (optional): Feel free to use even more HTML elements by adding images, navigation menus, etc.