Презентация Introducing the World Wide Web онлайн

На нашем сайте вы можете скачать и просмотреть онлайн доклад-презентацию на тему Introducing the World Wide Web абсолютно бесплатно. Урок-презентация на эту тему содержит всего 59 слайдов. Все материалы созданы в программе PowerPoint и имеют формат ppt или же pptx. Материалы и темы для презентаций взяты из открытых источников и загружены их авторами, за качество и достоверность информации в них администрация сайта не отвечает, все права принадлежат их создателям. Если вы нашли то, что искали, отблагодарите авторов - поделитесь ссылкой в социальных сетях, а наш сайт добавьте в закладки.



Оцените!
Оцените презентацию от 1 до 5 баллов!
  • Тип файла:
    ppt / pptx (powerpoint)
  • Всего слайдов:
    59 слайдов
  • Для класса:
    1,2,3,4,5,6,7,8,9,10,11
  • Размер файла:
    1.29 MB
  • Просмотров:
    68
  • Скачиваний:
    0
  • Автор:
    неизвестен



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

№1 слайд
Lecture - Senior-Lecturer
Содержание слайда: Lecture 1-2 Senior-Lecturer: Sarsenova Zh.N.

№2 слайд
Introducing the World Wide
Содержание слайда: Introducing the World Wide Web In 1969, the first transmission over the Internet took place Web pages are the basic unit of a website, and every website is a collection of one or more pages

№3 слайд
Introducing HTML The Language
Содержание слайда: Introducing HTML: The Language of the Web Web pages are written in HTML (HyperText Markup Language) A markup language is a set of markup tags It tells browsers how to display the contents of a web page, using special instructions (called tags) that instruct the browser when to start a paragraph, italicize a word, or display a picture

№4 слайд
Creating an HTML File Fire up
Содержание слайда: Creating an HTML File Fire up your favorite text editor Start writing HTML content. When you finish your web page, save the document. In the Encoding list, choose UTF-8. When you name your file, use the extension .htm or .html

№5 слайд
HTML Tags HTML tags are
Содержание слайда: HTML Tags HTML tags are formatting instructions that tell a browser how to transform ordinary text into something visually appealing. If you were to take all the tags out of an HTML document, the resulting page would consist of nothing more than plain, unformatted text.

№6 слайд
What s in a Tag To create a
Содержание слайда: What’s in a Tag To create a tag, you type HTML code between the brackets. (look like this: < >) For example, one simple tag is the <b>tag, which stands for “bold” (tag names are always lowercase). As you’ve seen, tags come in pairs. When you use a start tag (like <b> for bold), you have to include an end tag (like </b> ). This combination of start and end tags and the text in between them makes up an HTML element.

№7 слайд
Example
Содержание слайда: Example 1

№8 слайд
Types of elements Container
Содержание слайда: Types of elements: Container elements are, by far, the most common type. They apply formatting to the content nestled between the start and end tags. Standalone elements don’t turn formatting on or off. Instead, they insert something, like an image, into a page. One example is the <br> element, which inserts a line break in a page. Standalone elements don’t come in pairs, as container elements do, and you may hear them referred to as empty elements because you can’t put any text inside them.

№9 слайд
Nesting Elements Nesting
Содержание слайда: Nesting Elements Nesting elements is one of the basic building block techniques of web pages. You can also nest elements to create more complicated page components, like bulleted lists.

№10 слайд
Example This lt b gt lt i gt
Содержание слайда: Example 3 This <b><i>word </i></b> has italic and bold formatting. This word has italic and bold formatting

№11 слайд
DOCTYPE element DOCTYPE tells
Содержание слайда: DOCTYPE element DOCTYPE – tells process Web files - such as validators, Web browsers, etc. about the HTML specification used in the file’s source. The document type definition (DTD) is the first piece of information in an HTML file. Always on the first line of a file, before beginning <HTML> tag. It tells the browser what markup standard you used to write the page.

№12 слайд
Main HTML Components Any HTML
Содержание слайда: Main HTML Components Any HTML document begins with the following tag pair <html> - This element wraps everything (other than the doctype) in your web page. <head> - This element designates the header portion of your document. The header can include some optional information about your web page, including the required title, optional search keywords, and an optional style sheet <body> - This element holds the meat of your web page, including the actual content you want to display to the world. <title> </title> -element of the title <p></p> - paragraph tag <!--and --> - comments tag

№13 слайд
HTML Page Structure
Содержание слайда: HTML Page Structure

№14 слайд
Physical Styles Certain
Содержание слайда: Physical Styles Certain styles can be enforced to the browser by using following tags. <B> </B> Bold <I></I> Italics <TT></TT> Monospace (fixed width) <U></U> Underline <SUB></SUB> Subscript <SUP></SUP> Superscript

№15 слайд
Logical Style
Содержание слайда: Logical Style

№16 слайд
Size and Color
Содержание слайда: Size and Color

№17 слайд
Other elements
Содержание слайда: Other elements

№18 слайд
Other elements
Содержание слайда: Other elements

№19 слайд
Horizontal Lines
Содержание слайда: Horizontal Lines

№20 слайд
Preformatted Text
Содержание слайда: Preformatted Text

№21 слайд
Lists
Содержание слайда: Lists

№22 слайд
Linking other pages
Содержание слайда: Linking other pages

№23 слайд
Creating Links to Other Files
Содержание слайда: Creating Links to Other Files

№24 слайд
Creating Internal Links
Содержание слайда: Creating Internal Links

№25 слайд
Embedding image in Web Page
Содержание слайда: Embedding image in Web Page

№26 слайд
HTML Table
Содержание слайда: HTML Table

№27 слайд
HTML Table Syntax
Содержание слайда: HTML Table Syntax

№28 слайд
Images and Multimedia - I
Содержание слайда: Images and Multimedia - I

№29 слайд
Images and Multimedia - I
Содержание слайда: Images and Multimedia - I

№30 слайд
Home work Home work Read from
Содержание слайда: Home work Home work Read from book 19-35 pages Book: Creating a Web Site: Missing Manual

№31 слайд
Question Give examples of
Содержание слайда: Question Give examples of container element Give examples of standalone element

№32 слайд
Understanding Images To
Содержание слайда: Understanding Images To display pictures on a page, you use the <img> element in your HTML document Example <img src="photo01.jpg" /> Standalone Inline element (you can put them inside inside other block element, like paragraph) <p><img src="photo01.jpg" /></p>

№33 слайд
Alternate text Attributes src
Содержание слайда: Alternate text Attributes: src and alt src – location of the image alt- if the user for some reason cannot view it (slow connection)

№34 слайд
Examples of lt img gt with
Содержание слайда: Examples of <img> with attributes <img src="wrongname.gif" alt="HTML5 Icon“/> To add pop-up text, use title attribute: <img src="matador.jpg" alt="A matador extends his cape in welcome." title="Welcome to the ring." />

№35 слайд
Picture Size Web weavers
Содержание слайда: Picture Size Web weavers measure graphics in units called pixels. A pixel represents one tiny dot on a computer screen. <img src="photo01.jpg" alt="An explicitly sized picture" width="100“ height="150" />

№36 слайд
HTML Elements for Tables lt
Содержание слайда: HTML Elements for Tables <table> wraps the whole shebang. It’s the starting point for every table. <tr> represents a single table row. Every table element (<table>) contains a series of one or more <tr> elements. <td> represents a table cell (“td” stands for “table data”). For each cell you want in a row, you add one <td> element. You put the text that you want to appear in that cell inside the <td> element. <th> is an optional table element; you use it when you want to define a column heading. You can use a <th> element instead of a <td> element any time, although it usually makes the most sense in the first row of a table.

№37 слайд
Example
Содержание слайда: Example

№38 слайд
HTML Forms
Содержание слайда: HTML Forms

№39 слайд
The lt form gt Element The
Содержание слайда: The <form> Element The HTML <form> element defines a form that is used to collect user input:

№40 слайд
The lt input gt Element The
Содержание слайда: The <input> Element The <input> element is the most important form element. The <input> element can be displayed in several ways, depending on the type attribute.

№41 слайд
Text Input lt input type quot
Содержание слайда: Text Input <input type="text"> defines a one-line input field for text input:

№42 слайд
Radio Button Input lt input
Содержание слайда: Radio Button Input <input type="radio"> defines a radio button. Radio buttons let a user select ONE of a limited number of choices:

№43 слайд
The Submit Button lt input
Содержание слайда: The Submit Button <input type="submit"> defines a button for submitting the form data to a form-handler. The form-handler is typically a server page with a script for processing input data. The form-handler is specified in the form's action attribute:

№44 слайд
Grouping Form Data with lt
Содержание слайда: Grouping Form Data with <fieldset> The <fieldset> element is used to group related data in a form. The <legend> element defines a caption for the <fieldset> element.

№45 слайд
Example
Содержание слайда: Example

№46 слайд
Label Element The lt label gt
Содержание слайда: Label Element The <label> tag defines a label for an <input> element. The <label> element does not render as anything special for the user. However, it provides a usability improvement for mouse users, because if the user clicks on the text within the <label> element, it toggles the control.

№47 слайд
HTML Forms
Содержание слайда: HTML Forms

№48 слайд
HTML lt textarea gt Tag An
Содержание слайда: HTML <textarea> Tag An HTML text area: The <textarea> tag defines a multi-line text input control. A text area can hold an unlimited number of characters, and the text renders in a fixed-width font (usually Courier).

№49 слайд
lt textarea gt Attributes
Содержание слайда: <textarea> Attributes

№50 слайд
HTML lt select gt Tag Create
Содержание слайда: HTML <select> Tag Create a drop-down list with four options:

№51 слайд
HTML lt optgroup gt Tag The
Содержание слайда: HTML <optgroup> Tag The <optgroup> is used to group related options in a drop-down list.

№52 слайд
HTML lt option gt Tag The lt
Содержание слайда: HTML <option> Tag The <option> tag defines an option in a select list.

№53 слайд
HTML lt div gt Tag The lt div
Содержание слайда: HTML <div> Tag The <div> tag defines a division or a section in an HTML document.

№54 слайд
HTML class Attribute The
Содержание слайда: HTML class Attribute The class attribute specifies one or more classnames for an element.

№55 слайд
HTML id Attribute
Содержание слайда: HTML id Attribute

№56 слайд
HTML Semantic Elements A
Содержание слайда: HTML5 Semantic Elements A semantic element clearly describes its meaning to both the browser and the developer. Examples of non-semantic elements: <div> and <span> - Tells nothing about its content. Examples of semantic elements: <form>, <table>, and <article> - Clearly defines its content.

№57 слайд
HTML lt div gt Tag The lt div
Содержание слайда: HTML <div> Tag The <div> tag defines a division or a section in an HTML document.

№58 слайд
Semantic Elements The lt nav
Содержание слайда: Semantic Elements The <nav> element defines a set of navigation links.

№59 слайд
Home Work Read CHAPTER
Содержание слайда: Home Work Read CHAPTER 5

Скачать все slide презентации Introducing the World Wide Web одним архивом: