Reply To: The Laboratory II – Try Your HTML & ASCII Art Experiments Here

Home Forums YWN Main Site & Coffee Room Issues The Laboratory II – Try Your HTML & ASCII Art Experiments Here Reply To: The Laboratory II – Try Your HTML & ASCII Art Experiments Here

#1053101

Lesson 1- the basics:

Each one of these is a HTML tag that is used to notify the browser that special formatting is needed. Most tags need to be used both before and after the text you want to mark, and two only need to be used before the text.

Here are brief descriptions of each tag, and samples of how they work:

Sample:

Original HTML Lab

Sample:

<blockquote>This is a blockquote</blockquote>

This is a blockquote

Sample:

<em>Italicized text</em>

Italicized text

Sample:

<strong>Bold text</strong>

Bold text

Samples:

<ul>Colors
<li>red
<li>orange
<li>yellow
</ul>

    Colors

  • red
  • orange
  • yellow

<ol>Colors
<li>red
<li>orange
<li>yellow
</ol>

    Colors

  1. red
  2. orange
  3. yellow

Let’s see how the above turns out.

Depending on if it’s OK or not, the next post will either attempt to correct errors, or go on to lesson 2.

Lesson continues here…