Wednesday, October 26, 2011

- HTML Basics 3


                                    HTML BASICS #3


1.) What is an HTML File?
HTML stands for Hyper Text Markup Language
HTML is not a programming language, it is a markup language 
A markup language is a set of markup tags 
HTML uses markup tags to describe web pages  
2. ) What program would you use for HTML editing on the computer you are using?
Text Edit 
3. ) How can you turn your program into a web page ?  
HTML documents describe web pages 
HTML documents contain HTML tags and plain text 
HTML documents are also called web pages

The purpose of a web browser (like Internet Explorer or Firefox) is to read HTML documents and display them as web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page:
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>
4. ) What happens to the HTML tags when the program is displayed in a web browser ? 
The text between <html> and </html> describes the web page 
The text between <body> and </body> is the visible page content 
The text between <h1> and </h1> is displayed as a heading 
The text between <p> and </p> is displayed as a paragraph
5.) Which extension should you use HTM or HTML
When you save an HTML file, you can use either the .htm or the .html file extension. There is no difference, it is entirely up to you.
6. )What is a wysiwyg editor?  What are the advantages or disadvantages to a wysiwig program?
  WYSIWYG is an acronym for what you see is what you get. The term is used in computing to describe a system in which content (text and graphics) displayed onscreen during editing appears in a form exactly corresponding to its appearance when printed or displayed as a finished product. Which might be a printed document, web page, or slide presentation.




 


No comments:

Post a Comment