How to link to my peer pages

On this page I want to demonstrate how you can link multiple websites with the least effort.

  1. Once you have finished your webpages and you are ready to share your webpage links with your peers, click on the "Share" button Share button on code.org weblab on the top.
  2. Make note of the shares from your peers and the names of the pages they worked on.
  3. Add them to your website using navigation links.

Here is an example of the code I added to my page to link to another website I created.

      <!-- Navigation Links -->
      <p class="nav">
        <a href="index.html">Home</a> | 
        <a href="interests.html">Interests</a> | 
        <a href="story.html">Story</a> | 
        <a href="navigation.html">How to merge your independent pages</a> | 
        <a href="https://codeprojects.org/kDjLil7VEv-_oI0sdQXd2pEmvlWh5snTyUASRAYccAs"> Link to peer 1 demo pages </a> |
        <a href="https://codeprojects.org/_nGaAfzw9B4jKZ-VB9_GuRk11ohdZefNdk0uCrVKq0E/index.html">Link to my peer 2 pages</a>
      </p>

    <!-- End of navigation Links -->
    

Use this template to add links to your page up top.

      <!-- Navigation Links -->
      <p class="nav">
          <a href="index.html">Your Home Page</a> | 
          <a href="page2.html">Your Page 2</a> | 
          <a href="page3.html">Your Page 3 if applicable</a> | 
          <a href="page4.html">Your Page 4 if applicable</a> | 
          <a href="link to peer2 pages">Link to peer 2 pages on my team </a> |
          <a href="link to peer3 pages">Link to peer 3 pages on my team</a>
      </p>

      <!-- End of navigation Links -->
    

Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.