2 | 3 | Current Level: 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15
index.html
Page on main
Create a homepage for your group website that introduces your team and links to each member’s personal page. This file will be named index.html
and added directly to the main
branch.
Decide on Content (Group) As a group, decide what your homepage will say. Include:
Create the File (One Team Member)
index.html
.Add Basic HTML Structure Paste the following starter code and modify it with your content:
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Our Team Website</title>
</head>
<body>
<h1>Meet Our Team</h1>
<p>We are building this site together on GitHub Pages.</p>
<ul>
<li><a href="alex.html">Alex's Page</a></li>
<li><a href="jordan.html">Jordan's Page</a></li>
<li><a href="sam.html">Sam's Page</a></li>
</ul>
</body>
</html>
Commit the File
main
branch.Enable GitHub Pages
main
branch and root folder (/
).index.html
exists in the main
branchWhat should a good homepage include to help visitors understand what your site is about?