Home | Templates | 3D Headers | Downloads | Webmaster Tools | Add-Ons | Link To Us | Site Map | Advertise
|
Using HTML Hypertext Markup Language Hypertext Markup Language, or HTML, has been the standard text-formatting language since 1989 for documents on the interconnected computing network known as the World Wide Web. HTML documents are text files that contain two parts: content that is meant to be viewed on a computer screen, and tags, encoded information that directs the text format on the screen and is generally hidden from the user. To see what html looks like for this page, right click on an open field and choose "view source". Generally, what is within < and > is not "seen" on the visual part of a web page, but instructs the other text on how to behave. The average site builder does not have to know everything about HTML, but it is very important that you understand a couple things. One of which is "meta tags". This is how your site is found and listed by a search engine. (See Free Meta Tag Creation). And... A couple necessary scripts... Create a hyperlink: <A href="http://yourdestination.com">Text</A> Just replace yourdestination.com with the location you want the link to go to, and replace Text with the words you want the viewers to click on. Image or photo: <img src="yourphoto.jpg"> Very simple but you have to have the image uploaded to the server, and make sure you have the file name and extension exactly correct! Image
with hyperlink: <HR> This creates a horizontal divider like the one right below this line. Other HTML code examples: CLICK HERE Using Frames (Iframes) You can use this script if you want a portion of 1 page to appear within another page. <iframe height="174" width="98" frameborder="0" border="0" marginwidth="0" marginheight="0" scrolling="no" src="http://jimmohr.com/gameoftheday.html"></iframe> Experiment with this script by changing the height, width and the URL of the page. You let your visitors scroll the box by changing scrolling to "yes". The frame will only capture the top left of the URL. Free online html page generator CLICK HERE (click on the "open generator" key) You can practice your HTML skills by using this cool practice box. Paste anything into the box and click the "View html" button, and you will see how it will look and function as a web page.
The more I learn about HTML, the more I realize how unqualified I am to create a tutorial page. Please visit my friend Donna to learn from someone who knows way more than I do! The following site is the best I've seen, and the easiest to understand! http://www.seekeasy.net/html/index.html. These links were some of the other sites I used to help me learn HTML. http://www.boogiejack.com/html_tutorials.html http://www.digits.com/chart.html (HTML color chart) http://www.htmlcodetutorial.com/ http://www.w3schools.com/html/html_primary.asp http://archive.ncsa.uiuc.edu/General/Internet/WWW/HTMLPrimerP1.html http://www.updated.com/search/?wid=18231&text=free+html+tutorial There is an advanced form of HTML called "Java Script". Some of the scripts do not work on all browsers, and some of them are not allowed on free web sites. If you enjoyed HTML up to this point, experiment with the scripts at the following link. http://www.diamond-webdesigns.com/webmastercentral/javascript.htm |