Welcome
................................
Schedule
................................
Calendar
................................
Guidelines
................................
Journaling
................................
Our Websites
...............................
Contact Info
...............................
Resources
...............................
Links
...............................
| |
Basic HTML Continued
Ways to Format Text
Try these tags:
<strong> Text in container is set in bold </strong>
<i> Text in container is set in italics </i>
<u> Text in container is set in underline </u>
<s> Text in container is set in strike-through </s>
Add a break <br> to go to the next line.
Add two <br><br>to skip a line.
Add a list to your webpage to further format your text.
An Unordered List
<ul>
<li>Baseball</li>
<li>Football</li>
<li>Basketball</li>
<li>Hockey</li>
</ul>
An Ordered List
<ol>
<li>Baseball</li>
<li>Football</li>
<li>Basketball</li>
<li>Hockey</li>
</ol>
An Ordered List Starting on 23
<ol start="23">
<li>Baseball</li>
<li>Football</li>
<li>Basketball</li>
<li>Hockey</li>
</ol>
An Unordered List with a Nested Ordered List
<ul>
<li>Baseball</li>
<ol>
<li>Chicago White Sox</li>
<li>Chicago Cubs</li>
</ol>
<li>Football</li>
<li>Basketball</li>
<li>Hockey</li>
</ul>
also try these attributes...
<ol type="A">
<ol type="a">
<ol type="I">
<ol type="i">
<ul type="disc">
<ul type="circle">
<ul type="square">
A Definition List
<dl compact>
<dt>Baseball</dt>
<dd>My favorite team is the Chicago White Sox. My favorite
player is Paul Konerko. My sons favorite player is Frank Thomas.
My favorite pitcher is Mark Buerhle. The Sox will win the World
Series this year!!!</dd>
<dt>Football</dt>
<dd>My favorite team is the Chicago Bears. My favorite player
is Brian Urlacher.</dd>
<dt>Basketball</dt>
<dd>My favorite team is the Chicago Bulls. My favorite player
is Marcus Fizer.</dd>
<dt>Hockey</dt>
<dd>My favorite team is the Chicago Blackhawks. My favorite
player is Eric Daze.</dd>
</dl>
Preformatted text:
<pre>
Dan O'Connell
dan@d73.org<br>
webmaster@d73.org<br>
</pre>
Add spaces
- enters a Non-Breaking
SPace
A <hr> will add a horizontal line across the webpage.
Try these attributes with the <hr> tag: align, color, size,
width and noshade.
Welcome Page
Hello and thank you for visiting my webpage. My name is _______ and
I attend _______ school. After I complete my education, my goal is
to establish myself as a _______. I think I can make the world a better
place by _______.
This summer I participated in a program called Tech37. Tech37 is _______.
I learned a lot about _______ in tech37. Tech37 helped prepare me
for _______.
Some of my interests include _______. My favorite areas of study are
_______. In my free time, I enjoy _______.
Additional resources
Check out this cool site about color
Webwhirlers
Color Wheel |
|