Extra Items

Non-Breaking Space

A browser will interpret multiple blank spaces as one blank. This makes it difficult to put space where you may need it. For instance, HTML has no way to indent a new paragraph. A non-breaking space is a special HTML tag that the browser will interpret as a space. The HTML code is  

If you want to indent a paragraph, the code will look like that below.

 


HTML Code Browser Display

     Founded as Findlay College by the Churches of God, General Conference (then Churches of God in North America) and the citizens of the city of Findlay.

     Founded as Findlay College by the
Churches of God, General Conference
(then Churches of God in North America)
and the citizens of the city of Findlay.


Forms

A form is the mechanism that enables HTML to pass information from one page to the next. An example of a form is below

Username:
Password:
 

At this point, the only thing I want you to know is how to start and end a form. The form tag is a "before and after" tag.

<form name="form1" method="post" action="">The Form Goes In Here</form>

All the elements of a form go in between these form tags.


Jump To Top Home
Home HTML Rules Breaks Bold & Italic Tables Hyperlinks Fonts Images Extra Items