Presentation is loading. Please wait.

Presentation is loading. Please wait.

HTML. WHAT IS HTML 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.

Similar presentations


Presentation on theme: "HTML. WHAT IS HTML 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."— Presentation transcript:

1 HTML

2 WHAT IS HTML 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 The purpose of the tags are to describe page content

3 HTML TAGS HTML markup tags are usually called HTML tags HTML tags are keywords (tag names) surrounded by angle brackets like HTML tags normally come in pairs like and The first tag in a pair is the start tag, the second tag is the end tag The end tag is written like the start tag, with a forward slash before the tag name Start and end tags are also called opening tags and closing tags

4 HTML "HTML tags" and "HTML elements" are often used to describe the same thing. But strictly speaking, an HTML element is everything between the start tag and the end tag, including the tags: HTML Element: This is a paragraph tag

5 BROWSERS The purpose of a web browser (Chrome, Internet Explorer, 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

6 HTML PAGE STRUCTURE Below is a visualization of an HTML page structure: First Web Page My First Heading My first paragraph.

7 EXPLAIN PAGE STRUCTURE The DOCTYPE declaration defines the document type The text between and describes the web page The text between and is the visible page content The text between and is displayed as a heading The text between and is displayed as a paragraph

8 DOCTYPE The Declaration There are many different documents on the web. A browser can only display a document correctly, if it knows what kind of document it is. There are also many different versions of HTML, and a browser can only display an HTML page 100% correctly if it knows the exact HTML version used in the page. This is what is used for. is not an HTML tag. It is an information (a declaration) to the browser about what version the HTML is written in.

9 HTML TAG The tag tells the browser that this is an HTML document. The element is also known as the root element. The tag is the container for all other HTML elements (except for the tag).

10 HEAD ELEMENT The HTML Element The element is a container for all the head elements. Elements inside can include scripts, instruct the browser where to find style sheets, provide meta information, and more. The following tags can be added to the head section:,,,,, and.

11 HTML TAG The tag is required in all HTML documents and it defines the title of the document. The element: defines a title in the browser toolbar provides a title for the page when it is added to favorites displays a title for the page in search-engine results Note: You can NOT have more than one element in an HTML document. Tip: If you omit the tag, the document will not validate as HTML.

12 HTML TAG The tag defines the document’s body The element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc. Note: You only use the tag ONCE!!!

13 HTML AND TAG The tag defines a paragraph Browsers automatically add some space (margin) before and after each element. adds a double space between tags. The tag inserts a single line break. The tag is an empty tag which means that it has no end tag Note: Use the tag to insert line breaks, not to create paragraphs In HTML the tag has no end tag.

14 LET’S DO ONE TOGETHER

15 HEADING TAGS - The to tags are used to define HTML headings. defines the most important heading (biggest) defines the least important heading (smallest) Let’s add some headings

16 HTML TAG The tag creates a horizontal line in a HTML page. In HTML, the tag has no end tag. Add a tag to your notepad

17 SAVING HTML Always when you save a HTML document the file extension (.___) has to be.html This tells the browsers that it is an internet source When you are saving the home page of a web site, you always save it as index.html

18 ASSIGNMENT Create a HTML page about yourself Headings should be: About Me Favorite Things Things that get on my nerves Must use tags when typing your information Must use somewhere in the page Must have at least one Make sure to close your and


Download ppt "HTML. WHAT IS HTML 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."

Similar presentations


Ads by Google