Bugs
Assignment
Challenges
- Create your own personal page using the tags you’ve learned in class.
- Find 3 tags we haven’t talked about in class and include them in your page.
- Include at least 2 images.
- 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!
- Have you closed your tag?
- Have you included the slash in your tag?
- In JS Bin, are any of your tags red?