HTML CONTENTS THE HTML TAG THE HEAD TAG TITLES THE BODY TAG HEADERS PARAGRAPHS PREFORMATED TEXT BOLD FACE AND ITALICS LIST BLOCQUOTE CENTER SPECIAL FEATURES.

Презентация:



Advertisements
Похожие презентации
Lesson 3 - HTML Formatting. Text Formatting Tags TagDescription Defines bold text Defines big text Defines emphasized text Defines italic text Defines.
Advertisements

DRAFTING TECHNIQUES II 155. Auxiliary Views Auxiliary Views are easily made. When more specific detail of a part is needed, go to the VIEWS toolbar, then.
Family Relationships (Семейные Отношения). Family How could you describe the word family? First of all family means a close unit of parents and their.
DRAFTING TECHNIQUES I 136. Here is a basic shape. From here, we will do some advanced drafting once we put this shape on a sheet as a drawing. Select.
REFERENCE ELEMENTS 64. If your REFERENCE ELEMENTS toolbar is not in view and not hidden, you can retrieve it from the toolbars menu seen here. 65.
Using Dreamweaver MX Slide 1 Window menu Manage Sites… Window menu Manage Sites… 2 2 Open Dreamweaver 1 1 Set up a website folder (1). Click New…
DRAFTING and DIMENSIONING 98. A properly dimensioned drawing of a part is very important to the manufacturing outcome. With CATIA, it can be a very simple.
11 BASIC DRESS-UP FEATURES. LESSON II : DRESS UP FEATURES 12.
Welcome to…. YOUR FIRST PART – START TO FINISH 2.
Учимся писать Эссе. Opinion essays § 1- introduce the subject and state your opinion § 2-4 – or more paragraphs - first viewpoint supported by reasons/
What to expect? How to prepare? What to do? How to win and find a good job? BUSINESS ENGLISH COURSE NOVA KAKHOVKA GUMNASUIM 2012.
CONSTRAINTS 52. You do your CONSTRAINING in Sketcher mode to create your part to exacting dimensions. This is the opposite of free-form creating we have.
Ideal Family Were prepared by Iryna Molokova and Ilona Synytsia.
ADVANCED DRESS-UP FEATURES 39. Once OK has been selected, your part will appear with the filleted area highlighted by orange lines at the boundaries.
How can we measure distances in open space. Distances in open space.
Overview HTML? Editing HTML HTML Examples Headers Linking Images Special characters and more line breaks Unordered list Nested and ordered list References.
Lesson 2. How to say hello & goodbye ?. When we first meet someone whether it is a person we know or someone we are meeting for the first time, we will.
Making PowerPoint Slides Avoiding the Pitfalls of Bad Slides.
It's great to be a teenager. It's fearful to be a teenager. Being a teenager is romantic. It's fun to be a teenager. It's not easy to be young.
Work Wonders Пашковская Т.А. Лицей I spend about half of my time in my office, and the other half in court. I don`t have customers. I have clients.
Транксрипт:

HTML CONTENTS THE HTML TAG THE HEAD TAG TITLES THE BODY TAG HEADERS PARAGRAPHS PREFORMATED TEXT BOLD FACE AND ITALICS LIST BLOCQUOTE CENTER SPECIAL FEATURES

THE HTML TAG TAG: Tags are contained in symbols. In most cases you start with the beginning tag, put in the word or words that will be affected by this tag, and at the end of the string of word(s), you place a closing tag. Is usually placed on the first line of your document. At the end of your document you should close with the tag. The tag signals the point where text should start being interpreted as HTML code.

THE HEAD TAG Just like the header of a memo, the head of an HTML document contains special information, like its title. The head of a document is demarcated by and respectively. My First HTML Document

TITLES A title tag allows you to specify a Document Title in your browser window. When people make hotlists, this title is what they see in their list after they add your document. The format is: My First HTML Document Remember, the title usually doesn't appear in the document itself, but in a title box or bar at the top of the window.

THE BODY TAG Like you might expect, the body tags and define the beginning and end of the bulk of your document. All your text, images, and links will be in the body of the document. The body should start after the head. A typical page might begin like My First HTML Document

HEADERS There are up to six levels of headers that can be used in your document, h1 through h6. Header 1 is the largest header and they get progressively smaller through header 6. Below are each of the six headers and how they usually appear in relation to one another. This is a header 1 tag Headers, as you notice, not only vary in size, they are also bold and have a blank line inserted before and after them.

PARAGRAPHS In HTML, a paragraph tag should be put at the end of every paragraph of "normal" text (normal being defined as not already having a tag associated with it). causes a line break and adds a trailing blank line causes a line break with no trailing blank line As a convenience to yourself and others who might have to edit your HTML documents, it's a very good idea to put two or three blank lines between paragraphs to facilitate editing.

PREFORMATTED TEXT The preformatted text tag allows you to include text in your document that normally remains in a fixed-width font and retains the spaces, lines, and tabs of your source document. In other words, it leaves your text as it appears initially or just as you typed it in. Most clients collapse multiple spaces into one space, even tabs are collapsed to one space. The only way to circumvent this is to use the preformatted tag. Visually, preformatted text looks like a courier font. this is an example of a preformatted text tag

BOLDFACE AND ITALICS When using these tags, you usually cannot (and probably should not) have text that is both boldface and italics; the last tag encountered is usually the tag that is displayed. For example, if you had a boldface tag followed immediately by an italic tag, the tagged word would appear in italics.

Physical tags This is a boldface tag. This is how boldfacing appears. This is an italic tag. This is how italics appear. Logical tags This is a strongly emphasized tag. This is an emphasized tag.

LISTS There is an easy way in HTML to have numbered, unnumbered, and definition lists. In addition, you can nest lists within lists. When using lists, you have no control over the amount of space between the bullet or list number, HTML automatically does this for you. Neither (as yet) do you have control over what type of bullet will be used as each browser is different.

UNNUMBERED LISTS Unnumbered lists are started with the tag, followed by the actual list items, which are marked with the tag. The list is ended with the ending tag. For example, here is an unnumbered list with three items: list item 1 list item 2 list item 3

NUMBERED LISTS Here is the same list using a numbered list format: list item 1 list item 2 list item 3

DEFINITION LISTS Definition lists allow you to indent without necessarily having to use bullets. This is a term This is a definition And yet another definition Another term Another definition

NESTED LISTS Finally, here is a nested list within an unnumbered list (we could just have easily had a nested list within a numbered list). list item 1 nested item 1 nested item 2 nested item 1 nested item 2 list item 2 nested item 1 nested item 2 list item 3

BLOCKQUOTE The blockquote tag indents the text (both on the left and right) inside the tags. The blockquote tag looks like this:... and displays like this: Blockquoted text is often used for indenting big blocks of text such as quotations. The text will be indented until the ending tag is encountered. Again, note that the text here is indented on both the left and the right margins.

CENTER You can center text, images, and headings with the center tag: This is a centered sentence This is a centered sentence. The center tag automatically inserts a line break after the closing center tag.

HORIZONTAL RULE To separate sections in a document, you can insert a horizontal rule tag. A horizontal rule is displayed as follows:

Addresses The tag normally appears at the end of a document and is used most frequently to mark information on contacting the author or institution that has supplied this information. Introduction to HTML / Pat Androget /

COMMENTS It is possible to include comments in a source HTML document that do not appear when seen through a browser. This is most useful for giving warnings and special instructions to future editors of your document. Comments take the form:

STRIKE-THROUGH Should you want it, there is a strike-through tag which displays text with a strike. This is struck through text displays as This is struck through text

SPECIAL CHARACTERS &aacute;.... á &acirc;.... â &aelig;.... æ &agrave;.... à &amp;.... & &aring;.... å &atilde;.... ã &auml;.... ä &ccedil;.... ç &eacute;.... é &ecirc;.... ê &egrave;.... è &eth;.... ð &euml;.... ë &gt;.... > &iacute;.... í &icirc;.... î &igrave;.... ì &iuml;.... ï &lt;.... < &ntilde;.... ñ &oacute;.... ó &ocirc;.... ô &ograve;.... ò &oslash;.... ø &otilde;.... õ &ouml;.... ö &quot;.... " &szlig;.... ß &thorn;.... þ &uacute;.... ú &ucirc;.... û &ugrave;.... ù &uuml;.... ü &yacute;.... ý &yuml;.... ÿ

THANK YOU