Toxic
04-25-2009, 01:42 AM
Well, some people don't know HTML here I bet, and I want to teach some, if they read this. (Most likely they will). Just trying to help. :)
Introductions
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
__________________________________________________
Basics
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
<p>This is a paragraph</p>
<p>This is paragraph</p>
<a href="http://www.w3schools.com">This is a link</a>
<img src="w3schools.jpg" width="104" height="142" />
__________________________________________________ ______________
Simple Linking
<a href="http://www.w3schools.com">This is a link</a>
__________________________________________________ _________________
Headings
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3><!-- This is a comment --><p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
__________________________________________________ __________________
Simple Paragraphing
<p>This is a paragraph
<p>This is another paragraph
<p>This is<br />a para<br />graph with line breaks</p>
__________________________________________________ ____________________
Styles
<center> Defines centered content
<font> and <basefont>Defines HTML fonts
<s> and <strikeout> Defines strikeout text
<u> Defines underlined text
__________________________________________________ _____________________
Images
<img src="boat.gif" alt="Big Boat" />
__________________________________________________ __________________
Tables
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
<table border="1">
<tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
</table></table><table border="1">
<tr>
<th>Heading</th>
<th>Another Heading</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td></td>
</tr>
</table>
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td> </td>
</tr>
</table>
__________________________________________________ _____________________
Lists
<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
__________________________________________________ _______________
Forms
<form>
.
input elements
.
</form>
<form>
First name:
<input type="text" name="firstname" />
<br />
Last name:
<input type="text" name="lastname" />
</form>
<form>
<input type="radio" name="sex" value="male" /> Male
<br />
<input type="radio" name="sex" value="female" /> Female
</form>
<form>
I have a bike:
<input type="checkbox" name="vehicle" value="Bike" />
<br />
I have a car:
<input type="checkbox" name="vehicle" value="Car" />
<br />
I have an airplane:
<input type="checkbox" name="vehicle" value="Airplane" />
</form>
<form name="input" action="html_form_submit.asp" method="get">
Username:
<input type="text" name="user" />
<input type="submit" value="Submit" />
</form>
__________________________________________________ ______________
Well, that it all that there is. Well, the basics that is. HTML isn't that hard. I posted this, just in case some of those would like to know. The tech team members wouldn't care for this, but others will. Thank you for your time.
Introductions
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
__________________________________________________
Basics
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
<p>This is a paragraph</p>
<p>This is paragraph</p>
<a href="http://www.w3schools.com">This is a link</a>
<img src="w3schools.jpg" width="104" height="142" />
__________________________________________________ ______________
Simple Linking
<a href="http://www.w3schools.com">This is a link</a>
__________________________________________________ _________________
Headings
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3><!-- This is a comment --><p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
__________________________________________________ __________________
Simple Paragraphing
<p>This is a paragraph
<p>This is another paragraph
<p>This is<br />a para<br />graph with line breaks</p>
__________________________________________________ ____________________
Styles
<center> Defines centered content
<font> and <basefont>Defines HTML fonts
<s> and <strikeout> Defines strikeout text
<u> Defines underlined text
__________________________________________________ _____________________
Images
<img src="boat.gif" alt="Big Boat" />
__________________________________________________ __________________
Tables
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
<table border="1">
<tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
</table></table><table border="1">
<tr>
<th>Heading</th>
<th>Another Heading</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td></td>
</tr>
</table>
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td> </td>
</tr>
</table>
__________________________________________________ _____________________
Lists
<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
__________________________________________________ _______________
Forms
<form>
.
input elements
.
</form>
<form>
First name:
<input type="text" name="firstname" />
<br />
Last name:
<input type="text" name="lastname" />
</form>
<form>
<input type="radio" name="sex" value="male" /> Male
<br />
<input type="radio" name="sex" value="female" /> Female
</form>
<form>
I have a bike:
<input type="checkbox" name="vehicle" value="Bike" />
<br />
I have a car:
<input type="checkbox" name="vehicle" value="Car" />
<br />
I have an airplane:
<input type="checkbox" name="vehicle" value="Airplane" />
</form>
<form name="input" action="html_form_submit.asp" method="get">
Username:
<input type="text" name="user" />
<input type="submit" value="Submit" />
</form>
__________________________________________________ ______________
Well, that it all that there is. Well, the basics that is. HTML isn't that hard. I posted this, just in case some of those would like to know. The tech team members wouldn't care for this, but others will. Thank you for your time.