🗊 Презентация HTML. The standard markup language for creating Web pages

Нажмите для полного просмотра!
HTML. The standard markup language for creating Web pages, слайд №1 HTML. The standard markup language for creating Web pages, слайд №2 HTML. The standard markup language for creating Web pages, слайд №3 HTML. The standard markup language for creating Web pages, слайд №4 HTML. The standard markup language for creating Web pages, слайд №5 HTML. The standard markup language for creating Web pages, слайд №6 HTML. The standard markup language for creating Web pages, слайд №7 HTML. The standard markup language for creating Web pages, слайд №8 HTML. The standard markup language for creating Web pages, слайд №9 HTML. The standard markup language for creating Web pages, слайд №10 HTML. The standard markup language for creating Web pages, слайд №11 HTML. The standard markup language for creating Web pages, слайд №12 HTML. The standard markup language for creating Web pages, слайд №13 HTML. The standard markup language for creating Web pages, слайд №14 HTML. The standard markup language for creating Web pages, слайд №15 HTML. The standard markup language for creating Web pages, слайд №16 HTML. The standard markup language for creating Web pages, слайд №17 HTML. The standard markup language for creating Web pages, слайд №18 HTML. The standard markup language for creating Web pages, слайд №19 HTML. The standard markup language for creating Web pages, слайд №20

Вы можете ознакомиться и скачать презентацию на тему HTML. The standard markup language for creating Web pages. Доклад-сообщение содержит 20 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

Слайды и текст этой презентации


Слайд 1


HTML HTML is the standard markup language for creating Web pages.
Описание слайда:
HTML HTML is the standard markup language for creating Web pages.

Слайд 2


HTML stands for Hyper Text Markup Language HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup HTML...
Описание слайда:
HTML stands for Hyper Text Markup Language HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup HTML elements are the building blocks of HTML pages HTML elements are represented by tags HTML tags label pieces of content such as "heading", "paragraph", "table", and so on Browsers do not display the HTML tags, but use them to render the content of the page

Слайд 3


A Simple HTML Document Page Title My First Heading My first paragraph.
Описание слайда:
A Simple HTML Document Page Title My First Heading My first paragraph.

Слайд 4


Example Explained The declaration defines this document to be HTML5 The element is the root element of an HTML page The element contains meta...
Описание слайда:
Example Explained The declaration defines this document to be HTML5 The element is the root element of an HTML page The element contains meta information about the document The element specifies a title for the document The element contains the visible page content The element defines a large heading The element defines a paragraph

Слайд 5


HTML Tags HTML tags are element names surrounded by angle brackets: content goes here... HTML tags normally come in pairs like and The first tag in a...
Описание слайда:
HTML Tags HTML tags are element names surrounded by angle brackets: content goes here... 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, but with a forward slash inserted before the tag name Tip: The start tag is also called the opening tag, and the end tag the closing tag.

Слайд 6


Web Browsers The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them. The browser does not display the...
Описание слайда:
Web Browsers The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them. The browser does not display the HTML tags, but uses them to determine how to display the document:

Слайд 7


HTML Page Structure Below is a visualization of an HTML page structure: Note: Only the content inside the section (the white area above) is displayed...
Описание слайда:
HTML Page Structure Below is a visualization of an HTML page structure: Note: Only the content inside the section (the white area above) is displayed in a browser.

Слайд 8


The Declaration The declaration represents the document type, and helps browsers to display web pages correctly. It must only appear once, at the top...
Описание слайда:
The Declaration The declaration represents the document type, and helps browsers to display web pages correctly. It must only appear once, at the top of the page (before any HTML tags). The declaration is not case sensitive. The declaration for HTML is:

Слайд 9


HTML Versions Since the early days of the web, there have been many versions of HTML:
Описание слайда:
HTML Versions Since the early days of the web, there have been many versions of HTML:

Слайд 10


HTML Editors Write HTML Using Notepad or TextEdit Web pages can be created and modified by using professional HTML editors. However, for learning...
Описание слайда:
HTML Editors Write HTML Using Notepad or TextEdit Web pages can be created and modified by using professional HTML editors. However, for learning HTML usually recommend a simple text editor like Notepad (PC) or TextEdit (Mac). Using a simple text editor is a good way to learn HTML. Follow the four steps below to create your first web page with Notepad or TextEdit.

Слайд 11


Step 1: Open Notepad (PC) Step 1: Open Notepad (PC) Windows 8 or later: Open the Start Screen (the window symbol at the bottom left on your screen)....
Описание слайда:
Step 1: Open Notepad (PC) Step 1: Open Notepad (PC) Windows 8 or later: Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad. Windows 7 or earlier: Open Start > Programs > Accessories > Notepad Step 2: Write Some HTML Write or copy some HTML into Notepad.

Слайд 12


Step 3: Save the HTML Page Step 3: Save the HTML Page Save the file on your computer. Select File > Save as in the Notepad menu. Name the file...
Описание слайда:
Step 3: Save the HTML Page Step 3: Save the HTML Page Save the file on your computer. Select File > Save as in the Notepad menu. Name the file "index.htm" and set the encoding to UTF-8 (which is the preferred encoding for HTML files). You can use either .htm or .html as file extension. There is no difference, it is up to you.

Слайд 13


Step 4: View the HTML Page in Your Browser Step 4: View the HTML Page in Your Browser Open the saved HTML file in your favorite browser (double click...
Описание слайда:
Step 4: View the HTML Page in Your Browser Step 4: View the HTML Page in Your Browser Open the saved HTML file in your favorite browser (double click on the file, or right-click - and choose "Open with"). The result will look much like this:

Слайд 14


HTML Documents All HTML documents must start with a document type declaration: . The HTML document itself begins with and ends with . The visible...
Описание слайда:
HTML Documents All HTML documents must start with a document type declaration: . The HTML document itself begins with and ends with . The visible part of the HTML document is between and . Example My First Heading My first paragraph. Try yourself

Слайд 15


HTML Basic Examples HTML Documents All HTML documents must start with a document type declaration: . The HTML document itself begins with and ends...
Описание слайда:
HTML Basic Examples HTML Documents All HTML documents must start with a document type declaration: . The HTML document itself begins with and ends with . The visible part of the HTML document is between and . Example:

Слайд 16


HTML Headings HTML headings are defined with the to tags. defines the most important heading. defines the least important heading: Example
Описание слайда:
HTML Headings HTML headings are defined with the to tags. defines the most important heading. defines the least important heading: Example

Слайд 17


HTML Paragraphs HTML paragraphs are defined with the tag: Example
Описание слайда:
HTML Paragraphs HTML paragraphs are defined with the tag: Example

Слайд 18


HTML Links HTML links are defined with the tag: Example The link's destination is specified in the href attribute. Attributes are used to provide...
Описание слайда:
HTML Links HTML links are defined with the tag: Example The link's destination is specified in the href attribute. Attributes are used to provide additional information about HTML elements.

Слайд 19


HTML Images HTML images are defined with the tag. The source file (src), alternative text (alt), width, and height are provided as attributes: Example
Описание слайда:
HTML Images HTML images are defined with the tag. The source file (src), alternative text (alt), width, and height are provided as attributes: Example

Слайд 20


What is HTML? What is HTML? list the properties of HTML. What are HTML Tags? Tell about HTML Tags more. What are Web Browsers? What is HTML Page...
Описание слайда:
What is HTML? What is HTML? list the properties of HTML. What are HTML Tags? Tell about HTML Tags more. What are Web Browsers? What is HTML Page Structure? What are HTML Editors? What are HTML Headings? What are HTML Paragraphs? What are HTML Links? What are HTML Images?



Похожие презентации
Mypresentation.ru
Загрузить презентацию