Skip to content

Latest commit

 

History

History
56 lines (45 loc) · 1.45 KB

create_site.md

File metadata and controls

56 lines (45 loc) · 1.45 KB

<<<Back | Next>>>

ACTIVITY: Create a Course Site!

Using the tags we've just reviewed, and two additional ones (see below) begin creating an introductory page for a course you teach.

The first step is creating a new page. Call this page Course.html and remember the conditions of where to save it.

You page should include the following:

  • Doctype
  • Root element
  • Head and a body
  • Title for the page
  • One heading
  • One paragraph
  • One image
  • A menu or navigation bar that links to your `Home` and `About` pages
Think about the order of your content as you assemble the body of your page.

Additional Tags

Here are two additional tags that might come in handy in assembling your page:

  • To make a list. This may come in handy when making your menu or navigation bar.

<p>
    <ul>
        <li> item 1 </li>
        <li> item 2 </li>
        <li> item 3 </li>
    </ul>
</p>

  • To make a line break or give space between different elements.

<br/>

CHALLENGE

Finished? Play around with other tags by referring to an html cheatsheet.

<<<Back | Next>>>