902350_HTML_Jar.ppt
Document Details
Uploaded by AstoundingEmerald
Al al-Bayt University
Tags
Full Transcript
Introduction to HTML 1 Definitions W W W – World Wide Web. HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web. HTML is a text formatting language. URL – Uniform Resource Locator. Browser – A software program which is...
Introduction to HTML 1 Definitions W W W – World Wide Web. HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web. HTML is a text formatting language. URL – Uniform Resource Locator. Browser – A software program which is used to show web pages. 2 “Normal text” surrounded by bracketed tags that tell browsers how to display web pages Pages end with “.htm” or “.html” HTML Editor – A word processor that has been specialized to make the writing of HTML documents more effortless. 3 Tags Codes enclosed in brackets Usually paired My Web Page Not case sensitive = = 4 Choosing Text Editor There are many different programs that you can use to create web documents. HTML Editors enable users to create documents quickly and easily by pushing a few buttons. Instead of entering all of the HTML codes by hand. These programs will generate the HTML Source Code for you. 5 Choosing Text Editor HTML Editors are excellent tools for experienced web developers; however; it is important that you learn and understand the HTML language so that you can edit code and fix “bugs” in your pages. For this Course, we will focus on using the standard Microsoft Windows text editors, NotePad. We may use also textpad. 6 Starting NotePad NotePad is the standard text editor that comes with the microsoft windows operating system. To start NotePad in windows 9x or XP follow the steps bellow: Click on the “Start” button located on your Windows task bar. Click on “Programs” and then click on the directory menu labeled “Accessories”. Locate the shortcut “NotePad” and click the shortcut once. 7 HTML Page Creation & Editing In this chapter you will learn to create HTML pages with a standard text editor. Objectives Upon completing this section, you should be able to 1. Choose a Text Editor. 2. Create a Basic Starting Document. 3. Understand and set Document Properties. 4. View Your Results in a Browser. 8 Creating a Basic Starting Document Al al-Bayt University This is what is displayed. 9 Creating a Basic Starting Document The HEAD of your document point to above window part. The TITLE of your document appears in the very top line of the user’s browser. If the user chooses to “Bookmark” your page or save as a “Favorite”; it is the TITLE that is added to the list. The text in your TITLE should be as descriptive as possible because this is what many search engines, on the internet, use for indexing your site. 10 Setting Document Properties Document properties are controlled by attributes of the BODY element. For example, there are color settings for the background color of the page, the document’s text and different states of links. 11 Color Codes Colors are set using “RGB” color codes, which are, represented as hexadecimal values. Each 2-digit section of the code represents the amount, in sequence, of red, green or blue that forms the color. For example, a RGB value with 00 as the first two digits has no red in the color. 12 Main Colours 13 RGB Colour Model 14 16 Basic Colors 15 Color Codes 1. WHITE 1. #FFFFFF 2. BLACK 2. #000000 3. RED 3. #FF0000 4. GREEN 4. #00FF00 5. BLUE 5. #0000FF 6. MAGENTA 6. #FF00FF 7. CYAN 7. #00FFFF 8. YELLOW 8. #FFFF00 9. AQUAMARINE 9. #70DB93 10. BAKER’S CHOCOLATE 10. #5C3317 11. VIOLET 11. #9F5F9F 12. BRASS 12. #B5A642 13. COPPER 13. #B87333 14. PINK 14. #FF6EC7 15. ORANGE 15. #FF7F00 16 Color Codes If you require more information about color values, there is an excellent site entitled “VGDesign’s Interactive Color Cube” that displays the background color code when you put your cursor over a small color sample. The Web address is : http://www.vgdesign.com/color.html 17 The Body Element The BODY element of a web page is an important element in regards to the page’s appearance. Here are the attributes of the BODY tag to control all the levels: TEXT="#RRGGBB" to change the color of all the text on the page (full page text color.) This element contains information about the page’s background color, the background image, as well as the text and link colors. 18 Background Color It is very common to see web pages with their background color set to white or some other colors. To set your document’s background color, you need to edit the element by adding the BGCOLOR attribute. The following example will display a document with a white background color: 19 TEXT Color The TEXT attribute is used to control the color of all the normal text in the document. The default color for text is black. The TEXT attribute would be added as follows: In this example the document’s page color is white and the text would be red. 20 LINK, VLINK, and ALINK These attributes control the colors of the different link states: 1. LINK – initial appearance – default = Blue. 2. VLINK – visited link – default = Purple. 3. ALINK –active link being clicked–default= Yellow. The Format for setting these attributes is: 21 Using Image Background The BODY element also gives you ability of setting an image as the document’s background. An example of a background image’s HTML code is as follows: 22 Previewing Your Work Once you have created your basic starting document and set your document properties it is a good idea to save your file. To save a file, in NotePad, follow these steps: 1. Locate and click on the menu called “File”. 2. Select the option under File Menu labeled “Save As”. 3. In the “File Name” text box, type in the entire name of your file (including the extension name.html). 23 Edit, Save and View Cycle To preview Your Work, open a web browser and do the following: 1. Click on the menu labeled “File”. 2. Locate the menu option, “Open”. 24 Edit, Save and View Cycle 3. In the “Open” dialog box, click on the “Browse” button and locate your web document. 4. Click “OK” once you have selected your file. The web browser will load the same document but with the new revisions. This process is the Edit, Save and View Cycle. 25 Headings, Paragraphs, Breaks & Horizontal Rules In this chapter you will add headings to your page, insert paragraphs, add some breaks, and add horizontal rules. Objectives Upon completing this section, you should be able to 1. List and describe the different Heading elements. 2. Use Paragraphs to add text to a document. 3. Insert breaks where necessary. 4. Add a Horizontal Rule. 26 Headings, Inside the BODY element, heading elements H1 through H6 are generally used for major divisions of the document. Headings are permitted to appear in any order, but you will obtain the best results when your documents are displayed in a browser if you follow these guidelines: 1. H1: should be used as the highest level of heading, H2 as the next highest, and so forth. 2. You should not skip heading levels: e.g., an H3 should not appear after an H1, unless there is an H2 between them. 27 Headings, Example Page Heading 1 Heading 1 Heading 2 Heading 2 Heading 3 Heading 4 Heading 3 Heading 5 Heading 4 Heading 6 Heading 5 Heading 6 28 Paragraphs, Paragraphs allow you to add text to a document in such a way that it will automatically adjust the end of line to suite the window size of the browser in which it is being displayed. Each line of text will stretch the entire length of the window. 29 Paragraphs, Example Page Heading 1 Paragraph 1,…. Heading 1 Paragraph 1, …. Heading 2 Heading 2 Paragraph 2, …. Paragraph 2,…. Heading 3 Paragraph 3, …. Heading 3 Paragraph 3,…. Heading 4 Paragraph 4, …. Heading 4 Heading 5 Paragraph 4,…. Paragraph 5, …. Heading 6 Heading 5 Paragraph 6, …. Paragraph 5,…. Heading 6 Paragraph 6,…. 30 Break, Line breaks allow you to decide where the text will break on a line or continue to the end of the window. A is an empty Element, meaning that it may contain attributes but it does not contain content. The element does not have a closing tag. 31 Break, Example Page Heading 1 Heading 1 Paragraph 1,…. Paragraph 1, Line 2 Line 3 …. Line 2 Line 3 …. 32 Horizontal Rule, The element causes the browser to display a horizontal line (rule) in your document. does not use a closing tag,. 33 Horizontal Rule, Attribute Description Default Value Height of the rule in SIZE 2 pixels pixels Width of the rule in WIDTH pixels or percentage 100% of screen width Draw the rule with a Not set NOSHADE flat look instead of a 3D look (3D look) Aligns the line (Left, ALIGN Center Center, Right) Sets a color for the COLOR Not set rule (IE 3.0 or later) 34 Horizontal Rule, Example Page Heading 1 Heading 1 Paragraph 1,…. Paragraph 1, Line 2 Line 2 Line 3 ______________________ _____ Line 3 35 Character Formatting In this chapter you will learn how to enhance your page with Bold, Italics, and other character formatting options. Objectives Upon completing this section, you should be able to 1. Change the color and size of your text. 2. Use Common Character Formatting Elements. 3. Align your text. 4. Add special characters. 5. Use other character formatting elements. 36 Bold, Italic and other Character Formatting Elements Two sizes bigger The size attribute can be set as an absolute value from 1 to 7 or as a relative value using the “+” or “-” sign. Normal text size is 3 (from -2 to +4). Bold Italic Underline Color = “#RRGGBB” The COLOR attribute of the FONT element. E.g., this text has color Preformatted Text enclosed by PRE tags is displayed in a mono-spaced font. Spaces and line breaks are 37 supported without additional elements or special characters. Bold, Italic and other Character Formatting Elements Emphasis Browsers usually display this as italics. STRONG Browsers display this as bold. TELETYPE Text is displayed in a mono-spaced font. A typewriter text, e.g. fixed- width font. Citation represents a document citation (italics). For titles of books, films, etc. Typically displayed in italics. (A Beginner's Guide to HTML) 38 Bold, Italic and other Character Formatting Elements One One Size Larger - Normal – One Size Larger - Normal Size Smaller – Bold - italics - Underlined - One Size Colored Smaller Emphasized - Strong - Tele Bold - italics - Type Underlined - Colored Emphasized - Strong - Tele Type 39 Alignment Some elements have attributes for alignment (ALIGN) e.g. Headings, Paragraphs and Horizontal Rules. The Three alignment values are : LEFT, RIGHT, CENTER. Will center elements. 40 Alignment Represents a division in the document and can contain most other element type. The alignment attribute of the DIV element is well supported. Inside a TABLE, alignment can be set for each individual cell. 41 Special Characters & Symbols These Characters are recognized in HTML as they begin with an ampersand and end with with a semi-colon e.g. &value; The value will either be an entity name or a standard ASCII character number. They are called escape sequences. The next table represents some of the more commonly used special characters. For a comprehensive listing, visit the W3C’s section on special characters at: http://www.w3.org/MarkUp/HTMLPlus/htmlplus_13.html 42 Special Characters & Symbols Special Entity Special Entity Character Name Character Name Ampersand & & Greater-than > > sign Asterisk ∗ Less-than sign < < ∗∗ Cent sign ¢ ¢ Non-breaking space Copyright © © Quotation mark " " Fraction one ¼ Registration ® ® qtr ¼ mark Fraction one ½ Trademark ™ 43 half ½ sign ™ Special Characters & Symbols Additional escape sequences support accented characters, such as: ö – a lowercase o with an umlaut: ö ñ – a lowercase n with a tilde: ñ È – an uppercase E with a grave accent: È NOTE: Unlike the rest of HTML, the escape sequences are case sensitive. You cannot, for instance, use < instead of <. 44 Additional Character Formatting Elements strike-through text DEL is used for STRIKE at the latest browsers places text in a big font places text in a small font places text in subscript position places text in superscript style position 45 Example strike-through text places text in a big font places text in a small font places text in subscript position Normal places text in superscript style position 46 Lists In this chapter you will learn how to create a variety of lists. Objectives Upon completing this section, you should be able to 1. Create an unordered list. 2. Create an ordered list. 3. Create a defined list. 4. Nest Lists. 47 List Elements HTML supplies several list elements. Most list elements are composed of one or more (List Item) elements. UL : Unordered List. Items in this list start with a list mark such as a bullet. Browsers will usually change the list mark in nested lists. List item … List item … List item … List item … 48 List Elements You have the choice of three bullet types: disc(default), circle, square. These are controlled in Netscape Navigator by the “TYPE” attribute for the element. List item … List item … List item … List item … List item … List item … 49 List Elements OL: Ordered List. Items in this list are numbered automatically by the browser. List item … List item … List item … 1. List item … 2. List item … 3. List item You have the choice of setting the TYPE Attribute to one of five numbering styles. 50 List Elements TYPE Numbering Styles 1 Arabic numbers 1,2,3, …… a Lower alpha a, b, c, …… A Upper alpha A, B, C, …… i Lower roman i, ii, iii, …… I Upper roman I, II, III, …… 51 List Elements You can specify a starting number for an ordered list. List item … List item … text …. List item … 52 List Elements i. List item … ii. List item … Text …. iii. List item … 53 List Elements DL: Definition List. This kind of list is different from the others. Each item in a DL consists of one or more Definition Terms (DT elements), followed by one or more Definition Description (DD elements). HTML Hyper Text Markup Language DOG A human’s best friend! HTML Hyper Text Markup Language DOG A human’s best friend! 54 Nesting Lists You can nest lists by inserting a UL, OL, etc., inside a list item (LI). EXample List item … List item … List item … List item … List item … List item … List item … List item … 55 What will be the output? SAFETY TIPS FOR CANOEISTS Be able to swim Wear a life jacket at all times Don't stand up or move around. If canoe tips, Hang on to the canoe Use the canoe for support and Swim to shore Don't overexert yourself Use a bow light at night 56 The output…. 57 SAFETY TIPS FOR CANOEISTS Be able to swim Wear a life jacket at all times Don't stand up or move around. If canoe tips, Hang on to the canoe Use the canoe for support What Be careful will Do not look around be the output? Swim to shore Don't overexert yourself Use a bow light at night 58 The output…. 59 Images In this chapter you will learn about images and how to place images in your pages. Objectives Upon completing this section, you should be able to 1. Add images to your pages. 60 Images This element defines a graphic image on the page. Image File (SRC:source): This value will be a URL (location of the image) E.g. http://www.domain.com/dir/file.ext or /dir/file.txt. Alternate Text (ALT): This is a text field that describes an image or acts as a label. It is displayed when they position the cursor over a graphic image. Alignment (ALIGN): This allows you to align the image on your page. 61 Images Width (WIDTH): is the width of the image in pixels. Height (HEIGHT): is the height of the image in pixels. Border (BORDER): is for a border around the image, specified in pixels. HSPACE: is for Horizontal Space on both sides of the image specified in pixels. A setting of 5 will put 5 pixels of invisible space on both sides of the image. VSPACE: is for Vertical Space on top and bottom of the image specified in pixels. A setting of 5 will put 5 pixels of invisible space above and bellow the image. 62 Some Examples on images 1) 2) 3) 5) < IMG SRC =" jordan.gif“ align="left"> blast blast blast blast blast 63 Anchors, URLs and Image Maps In this chapter you will learn about Uniform Resource Locator, and how to add them as Anchor or Links inside your web pages. Objectives Upon completing this section, you should be able to 1. Insert links into documents. 2. Define Link Types. 3. Define URL. 4. List some commonly used URLs. 5. Plan an Image Map. 64 HOW TO MAKE A LINK 1) The tags used to produce links are the and. The tells where the link should start and the indicates where the link ends. Everything between these two will work as a link. 2) The example below shows how to make the word Here work as a link to yahoo. Click here to go to yahoo. 65 More on LINKs LINK - standard link - to a page the visitor hasn't been to yet. (standard color is blue - #0000FF). VLINK - visited link - to a page the visitor has been to before. (standard color is purple - #800080). ALINK - active link - the color of the link when the mouse is on it. (standard color is red - #FF0000). If the programmer what to change the color Click here to go to yahoo. 66 Internal Links Internal Links : Links can also be created inside large documents to simplify navigation. Today’s world wants to be able to get the information quickly. Internal links can help you meet these goals. 1. Select some text at a place in the document that you would like to create a link to, then add an anchor to link to like this: The Name attribute of an anchor element specifies a location in the document that we link to shortly. All NAME attributes in a document must be unique. 2. Next select the text that you would like to create as a link to the location created above. Go To Book Mark 67 E-Mail (Electronic Mail) E.g. mailto:[email protected] The type of service is identified as the mail client program. This type of link will launch the users mail client. The recipient of the message is [email protected] Send me More Information 68 Image Maps Image maps are images, usually in gif format that have been divided into regions; clicking in a region of the image cause the web surfer to be connected to a new URL. Image maps are graphical form of creating links between pages. There are two type of image maps: Client side and server side Both types of image maps involve a listing of co-ordinates that define the mapping regions and which URLs those coordinates are associated with. This is known as the map file. 69 Area Shapes Used 70 Client-Side Image Maps Client-side image maps (USEMAP) use a map file that is part of the HTML document (in an element called MAP), and is linked to the image by the Web browser. We can use Poly as well as Rect…… 71 Shapes, Coords Types of Shapes Rect used for squares and ordered shapes. Circle used for circles. Poly used for unordered shapes. Number of coordenations for each shape: Rect 4 numbers for two corners Circle 3 numbers for the center & R Poly depends on the number of corners of the shape( 2 numbers for each corner) 72 Tables In this chapter you will learn that tables have many uses in HTML. Objectives: Upon completing this section, you should be able to: 1. Insert a table. 2. Explain a table’s attributes. 3. Edit a table. 4. Add a table header. 73 Tables The element has four sub- elements: 1. Table Row. 2. Table Header. 3. Table Data. 4. Caption. The table row elements usually contain table header elements or table data elements. 74 Tables Column 1 header Column 2 header Row1, Col1 Row1, Col2 Row2, Col1 Row2, Col2 75 Tables Column 1 Header Column 2 Header Row1, Col1 Row1, Col2 Row2, Col1 Row2, Col2 76 Tables Attributes BGColor: Some browsers support background colors in a table. Width: you can specify the table width as an absolute number of pixels or a percentage of the document width. You can set the width for the table cells as well. Border: You can choose a numerical value for the border width, which specifies the border in pixels. CellSpacing: Cell Spacing represents the space between cells and is specified in pixels. 77 Table Attributes CellPadding: Cell Padding is the space between the cell border and the cell contents and is specified in pixels. Align: tables can have left, right, or center alignment. Background: Background Image, will be titled in IE3.0 and above. BorderColor, BorderColorDark. 78 Table Caption A table caption allows you to specify a line of text that will appear centered above or bellow the table. Label For My Table The Caption element has one attribute ALIGN that can be either TOP (Above the table) or BOTTOM (below the table). 79 Table Header Table Data cells are represented by the TD element. Cells can also be TH (Table Header) elements which results in the contents of the table header cells appearing centered and in bold text. 80 Table Data and Table Header Attributes Colspan: Specifies how many cell columns of the table this cell should span. Rowspan: Specifies how many cell rows of the table this cell should span. Align: cell data can have left, right, or center alignment. Valign: cell data can have top, middle, or bottom alignment. Width: you can specify the width as an absolute number of pixels or a percentage of the document width. Height: You can specify the height as an absolute number of pixels or a percentage of the document height. 81 Basic Table Code Spare Parts Stock NumberDescriptionList Price 3476-AB76mm Socket45.00 3478-AB78mm Socket 47.50 3480-AB80mm Socket50.00 82 Table Data and Table Header Attributes Column 1 Header Column 2 Header Row 1 Col 1 Row 2 Col 1 Row 2 Col2 Row 3 Col2 83 Table Data and Table Header Attributes Column 1 Header Column 2 Header Row 1 Col 1 Row 2 Col 2 Row 2 Col 1 Row 3 Col 2 84 Special Things to Note TH, TD and TR should always have end tags. Although the end tags are formally optional, many browsers will mess up the formatting of the table if you omit the end tags. In particular, you should always use end tags if you have a TABLE within a TABLE -- in this situation, the table parser gets hopelessly confused if you don't close your TH, TD and TR elements. A default TABLE has no borders By default, tables are drawn without border lines. You need the BORDER attribute to draw the lines. By default, a table is flush with the left margin TABLEs are plopped over on the left margin. If you want centered tables, You can either: place the table inside a DIV element with attribute ALIGN="center". Most current browsers also supports table alignment, using the ALIGN attribute. Allowed values are "left", "right", or "center", for example:. The values "left" and "right" float the table to the left or right of the page, with text flow allowed around the table. This is entirely equivalent to IMG alignment 85 What will be the output? Page Banner Nav LinksFeature Article Linked Ads News Column 1