- Objective - To implement a multipage web project.
- Each web-page should showcase a different skill or feature of HTML / CSS
- Purpose - To recap on learned material
- Begin by forking this project into a personal repository.
- To do this, click the
Forkbutton located at the top right of this page.
- To do this, click the
- Navigate to your github profile to find the newly forked repository.
- Clone the repository from your account into the
~/devdirectory. - Open the newly cloned project in a code editor (Visual Studio Code, for example).
-
Each
.htmlfile in this project has a title which describes the intended feature to be implemented.my-definition-list.htmlfile should have a definition list using the following format
<dl> <!-- definition list --> <dt></dt> <!-- definition term--> <dd></dd> <!-- definition --> </dl>
my-ordered-list.htmlfile should have an ordered list using the following format
<ol> <!-- ordered list --> <li> <!-- list item--> </li> </ol>
my-unordered-list.htmlfile should have an unordered list using the following format
<ul> <!-- unordered list --> <li></li> <!-- list item --> </ul>
my-column-of-rows.htmlfile should have a table of columns of several rows using the following format
<table> <!-- table --> <tr> <!-- table row--> <td> <!-- table data --> </td> </tr> </table>
my-row-of-columns.htmlfile should have a table of rows of several columns using the following format
<table> <!-- table--> <tr> <!-- table row --> <td> <!-- table data --> </td> </tr> </table>
- Ensure that there is a navigation path that makes it possible to view each of the pages.
- A navigation path is a set of links from one web page to another that allows internet users to navigate through the web.
- Rename each of the files to better match the content of the actual page.
- For example, if
my-row-of-columns.htmlcontains several columns of bunny-images, renamemy-row-of-columns.htmltobunny-images.html.
- For example, if
- Because each of the file names have been changed, modify the links to each of the pages.
- Modify the
style.cssfile to ensure that each web page has a cool style.
- Refactor your tables to use
divtags rather thantable,tr, andtdtags.
<table>
<tr>
<td>
</td>
</tr>
</table><div class="row">
<div class="column"></div>
</div>