AI‐07 - Code-the-Dream-School/intro-to-programming-2025 GitHub Wiki
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
section
element 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
section
element 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
section
element 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.