Skip to content

CodeDifferently/group-multipage-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

My First Multipage Project

  • 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

Part 1 - Clone the project

  • Begin by forking this project into a personal repository.
    • To do this, click the Fork button located at the top right of this page.
  • Navigate to your github profile to find the newly forked repository.
  • Clone the repository from your account into the ~/dev directory.
  • Open the newly cloned project in a code editor (Visual Studio Code, for example).

Part 2 - Demonstrate Feature Familiarity

  • Each .html file in this project has a title which describes the intended feature to be implemented.

    • my-definition-list.html file should have a definition list using the following format
    <dl> <!-- definition list -->
        <dt></dt> <!-- definition term-->
        <dd></dd> <!-- definition -->
    </dl>
    • my-ordered-list.html file should have an ordered list using the following format
    <ol> <!-- ordered list -->
        <li> <!-- list item-->
        </li>
    </ol>
    • my-unordered-list.html file should have an unordered list using the following format
    <ul> <!-- unordered list -->
        <li></li> <!-- list item -->
    </ul>
    <table> <!-- table -->
        <tr> <!-- table row-->
            <td> <!-- table data -->
            </td>
        </tr>
    </table>
    <table> <!-- table-->
        <tr> <!-- table row -->
            <td> <!-- table data -->
            </td>
        </tr>
    </table>

Part 3 - Creating navigation

  • 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.

Part 4 - Rename files

  • Rename each of the files to better match the content of the actual page.
    • For example, if my-row-of-columns.html contains several columns of bunny-images, rename my-row-of-columns.html to bunny-images.html.

Part 5 - Refactor Navigation Paths

  • Because each of the file names have been changed, modify the links to each of the pages.

Part 6 - Stylize your WebPage

  • Modify the style.css file to ensure that each web page has a cool style.

Part 7 - Refactor your Table

  • Refactor your tables to use div tags rather than table, tr, and td tags.

Sample Refactor

Using table, tr, and td tags
<table>
    <tr>
        <td>
        </td>
    </tr>
</table>
Using div tags
<div class="row">
  <div class="column"></div>
</div>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages