Latin Coding Club

home

Week #1

07 Nov 2013

Bugs

Assignment

Make it real

Challenges

  1. Create your own personal page using the tags you’ve learned in class.
  2. Find 3 tags we haven’t talked about in class and include them in your page.
  3. Include at least 2 images.
  4. Include at least 2 links.

Notes from class

Paragraph

<p>A paragraph of text</p>

Heading

<h1>H1 is the largest</h1>
<h6>H6 is the smallest</h6>

Styling

<i>This will be italics</i>
<b>This will be bold</b>

Numbered (ordered) List

<ol>
    <li>Item one</li>
    <li>Item two</li>
    <li>Item three</li>
</ol>

Bulletted (unordered) List

<ul>
    <li>Item one</li>
    <li>Item two</li>
    <li>Item three</li>
</ul>

Image (from internet)

<img src="http://cdn.media910.whipplehill.net/ftpimages/348/photo/large_photo46790_2483609.jpg">

With width defined:

<img src="http://cdn.media910.whipplehill.net/ftpimages/348/photo/large_photo46790_2483609.jpg" width="200">

With alternate text defined:

<img src="LAKJSDFASDFASDF" alt="Latin at 150">

Link

<a href="http://www.latinschool.org/Page/About/At-a-Glance">Latin School</a>

Trouble shooting: It’s not doing what I want it to do!