5 Images XX How to add images to pages XX Choosing the right format XX Optimizing images for the web
There are many reasons why you might want to add an image to a web page: you might want to include a logo, photograph, illustration, diagram, or chart. There are several things to consider when selecting and preparing images for your site, but taking time to get them right will make it look more attractive and professional. In this chapter you will learn how to: ●● Include an image in your web pages using HTML ●● Pick which image format to use ●● Show an image at the right size ●● Optimize an image for use on the web to make pages load faster You can also use CSS to include images in your pages using the background-image property, which you will meet on pages 413-420. 95 IMAGES
IMAGES 96
Choosing Images for Your Site A picture can say a thousand words, and great images help make the difference between an average-looking site and a really engaging one. Images can be used to set the pay to use (there is a list of stock If you have a page that shows tone for a site in less time than photography websites below). several images (such as product it takes to read a description. If Remember that all images are photographs or members of a you do not have photographs subject to copyright, and you team) then putting them on a to use on your website, there can get in trouble for simply simple, consistent background are companies who sell stock taking photographs from helps them look better as images; these are images you another website. a group. Images should... Stock photos Online extra Be relevant www.istockphoto.com We have provided an online Convey information www.gettyimages.com gallery that helps you choose the Convey the right mood www.veer.com right image for your website. You Be instantly recognisable www.sxc.hu can find it in the tools section of Fit the color palette www.fotolia.com the site accompanying this book. 97 IMAGES
Storing Images on Your Site If you are building a site from scratch, it is good practice to create a folder for all of the images the site uses. As a website grows, keeping On a big site you might like to If you are using a content images in a separate folder add subfolders inside the images management system or blogging helps you understand how the folder. For example, images such platform, there are usually tools site is organized. Here you can as logos and buttons might sit in built into the admin site that see an example of the files for a folder called interface, product allow you to upload images, a website; all of the images are photographs might sit in a page and the program will probably stored in a folder called images. called products, and images already have a separate folder related to news might live in a for image files and any folder called news. other uploads. IMAGES 98
Adding Images <img> chapter-05/adding-images.html HTML To add an image into the page <img src=\"images/quokka.jpg\" alt=\"A family of you need to use an <img> quokka\" title=\"The quokka is an Australian element. This is an empty marsupial that is similar in size to the element (which means there is domestic cat.\" /> no closing tag). It must carry the following two attributes: R e s u lt src The text used in the alt attribute If the image is just to make a is often referred to as alt text. page look more attractive (and This tells the browser where It should give an accurate it has no meaning, such as a it can find the image file. This description of the image content graphic dividing line), then the will usually be a relative URL so it can be understood by alt attribute should still be used pointing to an image on your screen reader software (used by but the quotes should be left own site. (Here you can see that people with visual impairments) empty. the images are in a child folder and search engines. called images — relative URLs were covered on pages 83-84). alt This provides a text description of the image which describes the image if you cannot see it. title You can also use the title attribute with the <img> element to provide additional information about the image. Most browsers will display the content of this attribute in a tootip when the user hovers over the image. 99 IMAGES
Height &ArWtiidctlhe of Images HTML chapter-05/height-and-width-of-images.html You will also often see an <img> element use two other attributes <img src=\"images/quokka.jpg\" alt=\"A family of that specify its size: quokka\" width=\"600\" height=\"450\" /> height R e s u lt This specifies the height of the image in pixels. width This specifies the width of the image in pixels. Images often take longer to load than the HTML code that makes up the rest of the page. It is, therefore, a good idea to specify the size of the image so that the browser can render the rest of the text on the page while leaving the right amount of space for the image that is still loading. The size of images is increasingly being specified using CSS rather than HTML — see pages 409- 410 for more information about this. IMAGES 100
Where to Place Images in Your Code Where an image is placed chapter-05/where-to-place-images.html HTML in the code will affect how it is displayed. Here are three <img src=\"images/bird.gif\" alt=\"Bird\" width=\"100\" examples of image placement height=\"100\" /> that produce different results: <p>There are around 10,000 living species of birds that inhabit different ecosystems from the 1: before a paragraph Arctic to the Antarctic. Many species undertake The paragraph starts on a new long distance annual migrations, and many more line after the image. perform shorter irregular journeys.</p> <hr /> 2: inside the start of a <p><img src=\"images/bird.gif\" alt=\"Bird\" width=\"100\" paragraph height=\"100\" />There are around 10,000 living The first row of text aligns with species of birds that inhabit different the bottom of the image. ecosystems from the Arctic to the Antarctic. Many species undertake long distance annual 3: in the middle of a migrations, and many more perform shorter paragraph irregular journeys.</p> The image is placed between the <hr /> words of the paragraph that it <p>There are around 10,000 living species of birds appears in. that inhabit different ecosystems from the Arctic to the Antarctic.<img src=\"images/bird.gif\" alt=\"Bird\" width=\"100\" height=\"100\" />Many species undertake long distance annual migrations, and many more perform shorter irregular journeys.</p> 101 IMAGES
R e s u lt Article Where you place the image in the code is important because browsers show HTML elements in one of two ways: Block elements always appear on a new line. Examples of block elements include the <h1> and <p> elements. If the <img> is followed by a block level element (such as a paragraph) then the block level element will sit on a new line after the imageas shown in the first example on this page. Inline elements sit within a block level element and do not start on a new line. Examples of inline elements include the <b>, <em>, and <img> elements. If the <img> element is inside a block level element, any text or other inline elements will flow around the image as shown in the second and third examples on this page. Block and inline elements are discussed in greater depth on pages 185-186. IMAGES 102
Old Code: Aligning Images Horizontally align chapter-05/aligning-images-horizontally.html HTML The align attribute was <p><img src=\"images/bird.gif\" alt=\"Bird\" width=\"100\" commonly used to indicate how height=\"100\" align=\"left\" />There are around the other parts of a page should 10,000 living species of birds that inhabit flow around an image. It has different ecosystems from the Arctic to the been removed from HTML5 Antarctic. Many species undertake long distance and new websites should use annual migrations, and many more perform shorter CSS to control the alignment of irregular journeys.</p> images (as you will see on pages <hr /> 411-412). <p><img src=\"images/bird.gif\" alt=\"Bird\" width=\"100\" height=\"100\" align=\"right\" />There are around I have discussed it here because 10,000 living species of birds that inhabit you are likely to come across different ecosystems from the Arctic to the it if you look at older code, and Antarctic. Many species undertake long distance because some visual editors still annual migrations, and many more perform shorter insert this attribute when you irregular journeys.</p> indicate how an image should be aligned. The align attribute can take these horizontal values: left This aligns the image to the left (allowing text to flow around its right-hand side). right This aligns the image to the right (allowing text to flow around its left-hand side). 103 IMAGES
R e s u lt Article This looks a lot neater than having one line of text next to the image (as shown on the previous example). When you give the align attribute a value of left, the image is placed on the left and text flows around it. When you give the align attribute a value of right, the image is placed on the right and the text flows around it. When text flows right up to the edge of an image it can make it harder to read. You will learn how to add a gap between text and images on pages 313-314 using the CSS padding and margin properties. IMAGES 104
Old Code: Aligning Images Vertically As you saw on the last page, the chapter-05/aligning-images-vertically.html HTML align attribute is no longer used in HTML5, but it is covered here <p><img src=\"images/bird.gif\" alt=\"Bird\" width=\"100\" because you may see it used in height=\"100\" align=\"top\" />There are around older websites and it is still used 10,000 living species of birds that inhabit in the code created by some different ecosystems from the Arctic to the visual editors. Antarctic. Many species undertake long distance annual migrations, and many more perform shorter You can see how to use CSS irregular journeys.</p> to achieve the same effects on <hr /> pages 285-286. <p><img src=\"images/bird.gif\" alt=\"Bird\" width=\"100\" height=\"100\" align=\"middle\" />There are around There are three values that the 10,000 living species of birds that inhabit align attribute can take that different ecosystems from the Arctic to the control how the image should Antarctic. Many species undertake long distance align vertically with the text that annual migrations, and many more perform shorter surrounds it: irregular journeys.</p> <hr /> top <p><img src=\"images/bird.gif\" alt=\"Bird\" width=\"100\" height=\"100\" align=\"bottom\" />There are around This aligns the first line of the 10,000 living species of birds that inhabit surrounding text with the top of different ecosystems from the Arctic to the the image. Antarctic. Many species undertake long distance annual migrations, and many more perform shorter middle irregular journeys.</p> This aligns the first line of the surrounding text with the middle of the image. bottom This aligns the first line of the surrounding text with the bottom of the image. 105 IMAGES
R e s u lt Article The value of top places the first line of text near the top of the image and subsequent lines of text appear under the image. The value of middle places the first line of text near the vertical middle of the image and subsequent lines of text appear under the image. The value of bottom places the first line of text near the bottom of the image and subsequent lines of text under the image. When text flows right up to the edge of an image it can make it harder to read. You will learn how to add a gap between text and images on pages 313-314 using the CSS padding and margin properties. If you would like all of the text to wrap arond the image (rather than just one line of text), you should use the CSS float property discussed on pages 370-372. In older code, you may see the align attribute used with the values left or right to achieve the same effect (as described on the previous page), although its use is no longer recommended. IMAGES 106
Three Rules for Creating Images There are three rules to remember when you 3 are creating images for your website which are summarized below. We go into greater detail on each topic over the next nine pages. 12 Save images in Save images at Use the correct the right format the right size resolution Websites mainly use images in You should save the image at Computer screens are made up jpeg, gif, or png format. If you the same width and height it will of dots known as pixels. Images choose the wrong image appear on the website. If used on the web are also made format then your image might the image is smaller than the up of tiny dots. Resolution refers not look as sharp as it should width or height that you have to the number of dots per inch, and can make the web page specified, the image can be and most computer screens only slower to load. distorted and stretched. If the show web pages at 72 pixels image is larger than the width per inch. So saving images at and height if you have specified, a higher resolution results in the image will take longer to images that are larger than display on the page. necessary and take longer to download. 107 IMAGES
Tools to Edit & Save Images There are several tools you can use to edit and save images to ensure that they are the right size, format, and resolution. The most popular tool amongst web professionals is Adobe Photoshop. (In fact, professional web designers often use this software to design entire sites.) The full version of Photoshop is expensive, but there is a cheaper version called Photoshop Elements which would suit the needs of most beginners. Other Software Online Editors Online extra Adobe Fireworks Watch videos that demonstrate Pixelmator www.photoshop.com how to resize images and save PaintShop Pro www.pixlr.com them in the correct format using Paint.net www.splashup.com both of these applications. www.ipiccy.com IMAGES 108
Image Formats: JPEG Whenever you have many different colors in a picture you should use a JPEG. A photograph that features snow or an overcast sky might look like it has large areas that are just white or gray, but the picture is usually made up of many different colors that are subtly different.
Image Formats: GIF RESEARCH TEST BUILD CEPT CON DESIGN
Use GIF or PNG format when saving images with few colors or large areas of the same color. When a picture has an area that is filled with exactly the same color, it is known as flat color. Logos, illustrations, and diagrams often use flat colors. (Note that photographs of snow, sky, or grass are not flat colors, they are made up of many subtly different shades of the same color and are not as suited to GIF or PNG format.)
Image Dimensions The images you use on your website should be saved at the same width and height that you want them to appear on the page. For example, if you have image. When sourcing images, it Online extra designed a page to include an is important to understand how Visit the tools section of the image that is 300 pixels wide by you can alter the dimensions of website accompanying this 150 pixels tall, the image you use an image; imagine that you had book to watch a video guide to should be 300 x 150 pixels. You designed a web page to include resizing images in Photoshop may need to use image editing an image that is 300 pixels wide and GIMP. tools to resize and crop the by 150 pixels tall: REDUCING IMAGE SIZE INCREASING IMAGE SIZE CHANGING SHAPE You can reduce the size of You can't increase the size of Only some images can be images to create a smaller photos significantly without cropped without losing valuable version of the image. affecting the image quality. information (see next page). Example: If your image is 600 Example: If your image is only Example: If your image is 300 pixels wide and 300 pixels tall, 100 pixels wide by 50 pixels tall, pixels square, you can remove you can reduce the size of the increasing the size by 300% parts of it, but in doing so you image by 50%. would result in poor quality. might lose valuable information. Result: This will create an image Result: The image will look Result: Only some images can that is quicker to download. blurry or blocky. be cropped and still make sense. 113 IMAGES
Cropping Images PORTRAIT When cropping images it is important not to lose valuable information. It is best to source images that are the correct shape if possible. LANDSCAPE Here you can see an illustration If we crop this illustration to If we add extra space to the left of a giraffe that is best suited to make it landscape we lose the and right of the illustration the appearing in portrait. head and feet. background is not continued. LANDSCAPE PORTRAIT Here you can see an illustration If we crop this illustration to If we add extra space to the top of an elephant that is best suited make it portrait we lose the trunk and bottom of the illustration the to appearing in landscape. and the hindquarters. background is not continued. IMAGES 114
Image Resolution Images created for the web should be saved at a resolution of 72 ppi. The higher the resolution of the image, the larger the size of the file. JPGs, GIFs, and PNGs belong to Images appearing on computer computers display images at a a type of image format known screens are made of tiny squares resolution of 72 pixels per inch as bitmap. They are made up of called pixels. A small segment (ppi). Images in print materials lots of miniature squares. The of this photograph has been (such as books and magazines) resolution of an image is the magnified to show how it is are made up of tiny circles called number of squares that fit within made up of pixels. The web dots. These images are usually a 1 inch x 1 inch square area. browsers on most desktop printed at a resolution of 300 dots per inch (dpi). For this image: JPEG at 300 dpi = 1,526kb JPEG at 72 ppi = 368kb Due to the fact that computer displays are capped at a resolution of 72 ppi, using images on the web with a higher resolution will not result in better image quality — only in larger file sizes, which will increase the time needed to load them and therefore slow down viewing of your web pages. 115 IMAGES
Vector Images Vector images differ from bitmap images and are resolution-independent. Vector images are commonly created in programs such as Adobe Illustrator. When an image is a line drawing Vector images are created by The advantage of creating line (such as a logo, illustration, or placing points on a grid, and drawings in vector format is that diagram), designers will often drawing lines between those you can increase the dimensions create it in vector format. points. A color can then be of the image without affecting Vector formatted images are added to \"fill in\" the lines that the quality of it. very different to bitmap images. have been created. The current method of using vector images for display on websites involves saving a bitmap version of the original vector image and using that. Scalable Vector Graphics (SVG) are a relatively new format used to display vector images directly on the web (eliminating the need to create bitmap versions of them), however its use is not yet widespread. IMAGES 116
Animated GIFs Animated GIFs show several frames of an image in sequence and therefore can be used to create simple animations. Below you can see the individual It is important to Some designers frown on frames that make up an remember: animated GIFs because they animated GIF that shows an remember a lot of amateur web orange dot revolving around Each extra frame of the image designers overusing them in the a circle — like the kind of increases the size of the file, and 1990's. animation you might see when a can therefore add to the time it web page is loading. takes for an image to download (and web users do not like Some image editing applications waiting a long time for images to such as Adobe Photoshop allow download). you to create animated GIFs. There are several tutorials about Because GIFs are not an how to do this on the web. There ideal format for displaying are also several websites that photographs, animated GIFs are allow you to upload the graphics really only suitable for simple for the individual frames and illustrations. create the animated GIF for you. 1 23 45678 117 IMAGES
Transparency Creating an image that is partially transparent (or \"see-through\") for the web involves selecting one of two formats: Transparent GIF PNG Transparent PNGs are not fully supported in older browsers, If the transparent part of the If the transparent part of the most notably Internet Explorer 6 image has straight edges and image has diagonal or rounded (IE6). There is some JavaScript it is 100% transparent (that is, edges or if you want a semi- you can use to get around this not semi-opaque), you can save opaque transparency or a drop- issue. The details of this script the image as a GIF (with the shadow, then you will need to can be found in the tools section transparency option selected). save it as a PNG. of the website accompanying this book. Straight Diagonal Round Semi-Opaque Drop-Shadow IMAGES 118
Examining Images on the Web Checking the Size of Images On the left you can see how to check the size of images and If you are updating a website, you might need to check the size of an how to download them using existing image before creating a new one to replace it. This can be Safari. Below is a brief overview achieved by right-clicking on the image and making a selection from of what to select in the pop-up the pop-up menu that appears. (Mac users will need to hold down the menu to perform these functions control key and click rather than right-click.) in various browsers. Downloading Images CHROME Size: Open Image in New Tab If you want to download images from a website, you can do so by Size appears in new tab accessing the same pop-up menu. (Please remember however that all Download: Save Image As images online are subject to copyright and require explicit permission to reuse.) FIREFOX Size: View Image Info Size appears in pop-up window Download: Save Image As Internet Explorer Size: Properties Size appears in pop-up window Download: Save Image SAFARI Size: Open Image in New Tab Size appears in title bar Download: Save Image As 119 IMAGES
HTML5: FiguArretaicnlde Figure Caption HTML chapter-05/figure-and-figure-caption.html <figure> <figure> Images often come with <img src=\"images/otters.jpg\" alt=\"Photograph of captions. HTML5 has introduced two sea otters floating in water\"> a new <figure> element to <br /> contain images and their caption so that the two are associated. <figcaption>Sea otters hold hands when they sleep so they don't drift away from each You can have more than one other.</figcaption> image inside the <figure> </figure> element as long as they all share the same caption. R e s u lt <figcaption> The <figcaption> element has been added to HTML5 in order to allow web page authors to add a caption to an image. Before these elements were created there was no way to associate an <img> element with its caption. Older browsers that do not understand HTML5 elements simply ignore the new elements and display the content of them. IMAGES 120
In this example, the logo is a GIF The alt attribute on each This example does not because it uses flat colors, while image provides a description use the height, width, or the photographs are JPEGs. The for those using screen readers align attributes as these are main photo is placed inside the and the title attribute provides being phased out and you HTML5 <figure> element and additional information. (This is are encouraged to use CSS has its own caption. shown in the tooltip.) properties instead. 121 IMAGES
Example IMAGES <html> <head> <title>Images</title> </head> <body> <h1> <img src=\"images/logo.gif\" alt=\"From A to Zucchini\" /> </h1> <figure> <img src=\"images/chocolate-islands.jpg\" alt=\"Chocolate Islands\" title=\"Chocolate Islands Individual Cakes\" /> <p> <figcaption> This recipe for individual chocolate cakes is so simple and so delectable! </figcaption> </p> </figure> <h4>More Recipes:</h4> <p> <img src=\"images/lemon-posset.jpg\" alt=\"Lemon Posset\" title=\"Lemon Posset Dessert\" /> <img src=\"images/roasted-brussel-sprouts.jpg\" alt=\"Roasted Brussel Sprouts\" title=\"Roasted Brussel Sprouts Side Dish\" /> <img src=\"images/zucchini-cake.jpg\" alt=\"Zucchini Cake\" title=\"Zucchini Cake No Frosting\" /> </p> </body> </html> IMAGES 122
Summary IMAGES XX The <img> element is used to add images to a web page. XX You must always specify a src attribute to indicate the source of an image and an alt attribute to describe the content of an image. XX You should save images at the size you will be using them on the web page and in the appropriate format. XX Photographs are best saved as JPEGs; illustrations or logos that use flat colors are better saved as GIFs.
6 Tables XX How to create tables XX What information suits tables XX How to represent complex data in tables
There are several types of information that need to be displayed in a grid or table. For example: sports results, stock reports, train timetables. When representing information in a table, you need to think in terms of a grid made up of rows and columns (a bit like a spreadsheet). In this chapter you will learn how to: ●● Use the four key elements for creating tables ●● Represent complex data using tables ●● Add captions to tables 127 TABLES
TABLES 128
129 TABLES
What's a Table? A table represents information in a grid format. Examples of tables include financial reports, TV schedules, and sports results. Grids allow us to understand Each block in the grid is referred complex data by referencing to as a table cell. In HTML a information on two axes. table is written out row by row. TABLES 130
Basic Table Structure <table> chapter-06/basic-table-structure.html HTML R e s u lt The <table> element is used <table> to create a table. The contents <tr> of the table are written out row <td>15</td> by row. <td>15</td> <td>30</td> <tr> </tr> <tr> You indicate the start of each <td>45</td> row using the opening <tr> tag. <td>60</td> (The tr stands for table row.) <td>45</td> </tr> It is followed by one or more <tr> <td> elements (one for each cell <td>60</td> in that row). <td>90</td> <td>90</td> At the end of the row you use a </tr> closing </tr> tag. </table> <td> Each cell of a table is represented using a <td> element. (The td stands for table data.) At the end of each cell you use a closing </td> tag. Some browsers automatically draw lines around the table and/or the individual cells. You will learn how to control the borders of tables using CSS on pages 309-312 and 337-340. 131 TABLES
Table HeAardtiincgles HTML chapter-06/table-headings.html <th> <table> The <th> element is used just <tr> like the <td> element but its <th></th> purpose is to represent the <th scope=\"col\">Saturday</th> heading for either a column or <th scope=\"col\">Sunday</th> a row. (The th stands for table </tr> heading.) <tr> <th scope=\"row\">Tickets sold:</th> Even if a cell has no content, <td>120</td> you should still use a <td> or <td>135</td> <th> element to represent </tr> the presence of an empty cell <tr> otherwise the table will not <th scope=\"row\">Total sales:</th> render correctly. (The first cell <td>$600</td> in the first row of this example <td>$675</td> shows an empty cell.) </tr> Using <th> elements for </table> headings helps people who use screen readers, improves R e s u lt the ability for search engines to index your pages, and also enables you to control the appearance of tables better when you start to use CSS. You can use the scope attribute on the <th> element to indicate whether it is a heading for a column or a row. It can take the values: row to indicate a heading for a row or col to indicate a heading for a column. Browsers usually display the content of a <th> element in bold and in the middle of the cell. TABLES 132
Spanning ColumnS Sometimes you may need the chapter-06/spanning-columns.html HTML entries in a table to stretch R e s u lt across more than one column. <table> <tr> The colspan attribute can be <th></th> used on a <th> or <td> element <th>9am</th> and indicates how many columns <th>10am</th> that cell should run across. <th>11am</th> <th>12am</th> In the example on the right </tr> you can see a timetable with <tr> five columns; the first column <th>Monday</th> contains the heading for that <td colspan=\"2\">Geography</td> row (the day), the remaining four <td>Math</td> represent one hour time slots. <td>Art</td> </tr> If you look at the table cell that <tr> contains the words 'Geography' <th>Tuesday</th> you will see that the value of the <td colspan=\"3\">Gym</td> colspan attribute is 2, which <td>Home Ec</td> indicates that the cell should run </tr> across two columns. In the third row, 'Gym' runs across three </table> columns. You can see that the second and third rows have fewer <td> elements than there are columns. This is because, when a cell extends across more than one column, the <td> or <th> cells that would have been in the place of the wider cells are not included in the code. I added some CSS styles to this example so that you can see how the cells span more than one column. You will learn how to do this on pages 250, 337-340. 133 TABLES
SpanninAgrRtoicwles HTML chapter-06/spanning-rows.html You may also need entries in a table to stretch down across <table> more than one row. <tr> <th></th> The rowspan attribute can be <th>ABC</th> used on a <th> or <td> element <th>BBC</th> to indicate how many rows a cell <th>CNN</th> should span down the table. </tr> <tr> In the example on the left you <th>6pm - 7pm</th> can see that ABC is showing a <td rowspan=\"2\">Movie</td> movie from 6pm - 8pm, whereas <td>Comedy</td> the BBC and CNN channels are <td>News</td> both showing two programs </tr> during this time period (each of <tr> which lasts one hour). <th>7pm - 8pm</th> <td>Sport</td> If you look at the last <tr> <td>Current Affairs</td> element, it only contains three </tr> elements even though there are four columns in the result below. </table> This is because the movie in the <tr> element above it uses the R e s u lt rowspan attribute to stretch down and take over the cell below. I have added some CSS styles to this example so that you can see how the cells span more than one row. You will learn how to apply these CSS styles to tables on pages 250, 337-340. TABLES 134
Long Tables There are three elements that chapter-06/long-tables.html HTML help distinguish between the main content of the table and <table> the first and last rows (which can <thead> contain different content). <tr> <th>Date</th> These elements help people <th>Income</th> who use screen readers and also <th>Expenditure</th> allow you to style these sections </tr> in a different manner than the </thead> rest of the table (as you will see <tbody> when you learn about CSS). <tr> <th>1st January</th> <thead> <td>250</td> <td>36</td> The headings of the table should </tr> sit inside the <thead> element. <tr> <th>2nd January</th> <tbody> <td>285</td> <td>48</td> The body should sit inside the </tr> <tbody> element. <!-- additional rows as above --> <tr> <tfoot> <th>31st January</th> <td>129</td> The footer belongs inside the <td>64</td> <tfoot> element. </tr> </tbody> By default, browsers rarely treat <tfoot> the content of these elements <tr> any differently than other <td></td> elements however designers <td>7824</td> often use CSS styles to change <td>1241</td> their appearance. </tr> </tfoot> </table> 135 TABLES
R e s u lt Article Some of the HTML editors that come in content management systems offer tools to help draw tables. If the first row of your table only contains <th> elements then you may find that the editor inserts a <thead> element automatically. Part of the reason for having separate <thead> and <tfoot> elements is so that, if you have a table that is taller than the screen (or, if printed, longer than one page) then the browser can keep the header and footer visible whilst the contents of the table scroll. This is intended to make it easier for users to see which column the data is in (however this functionality is not implemented by default in any current browser). I have added some CSS styles to this example so that you can see the contents of the <thead> and <tfoot> being treated differently than the rest of the rows. You will learn how to apply these CSS styles to tables on pages 309-312 and 337-340. TABLES 136
Old Code: Width & Spacing There are some outdated chapter-06/width-and-spacing.html HTML attributes which you should not use on new websites. You may, <table width=\"400\" cellpadding=\"10\" cellspacing=\"5\"> however, come across some <tr> of them when looking at older <th width=\"150\"></th> code, so I will mention them <th>Withdrawn</th> here. All of these attributes have <th>Credit</th> been replaced by the use of CSS. <th width=\"150\">Balance</th> </tr> The width attribute was used <tr> on the opening <table> tag to <th>January</th> indicate how wide that table <td>250.00</td> should be and on some opening <td>660.50</td> <th> and <td> tags to specify <td>410.50</td> the width of individual cells. </tr> The value of this attribute is <tr> the width of the table or cell in <th>February</th> pixels. <td>135.55</td> <td>895.20</td> The columns in a table need to <td>1170.15</td> form a straight line, so you often </tr> only see the width attribute on the first row (and all subsequent </table> rows would use that setting). R e s u lt The opening <table> tag could also use the cellpadding attribute to add space inside each cell of the table, and the cellspacing attribute to create space between each cell of the table. The values for these attributes were given in pixels. I added CSS styles to this example so that you can see the width of the table cells more clearly. If you want to control the width or spacing of tables and cells you should use CSS as shown on pages 303, 337-340. 137 TABLES
OlAdrCtoicdlee: Border & Background HTML chapter-06/border-and-background.html The border attribute was used on both the <table> and <td> <table border=\"2\" bgcolor=\"#efefef\"> elements to indicate the width of <tr> the border in pixels. <th width=\"150\"></th> <th>Withdrawn</th> The bgcolor attribute was used <th>Credit</th> to indicate background colors <th width=\"150\" bgcolor=\"#cccccc\">Balance</th> of either the entire table or </tr> individual table cells. The value <tr> is usually a hex code (which we <th>January</th> discuss on pages 249-252). <td>250.00</td> <td>660.50</td> This example uses the HTML <td bgcolor=\"#cccccc\">410.50</td> border and bgcolor attributes. </tr> No CSS attributes were utilized <tr> in this example. <th>February</th> <td>135.55</td> When building a new website <td>895.20</td> you should use CSS to control <td bgcolor=\"#cccccc\">1170.15</td> the appearance of the table </tr> rather than these attributes. They are only covered here </table> because you may come across them if you look at the code of R e s u lt older websites. TABLES 138
This example shows a table for The empty cell in the top left still the scope attribute to indicate customers to compare website has a <th> element to represent whether they are headings for hosting packages. There are it. Each cell of the table must be a row or column. The final row table headings in the first row accounted for by a <th> or <td> uses the colspan attribute to and first column of the table. element. The <th> elements use spread across all three columns. 139 TABLES
Example TABLES <html> <head> <title>Tables</title> </head> <body> <table> <thead> <tr> <th></th> <th scope=\"col\">Home starter hosting</th> <th scope=\"col\">Premium business hosting</th> </tr> </thead> <tbody> <tr> <th scope=\"row\">Disk space</th> <td>250mb</td> <td>1gb</td> </tr> <tr> <th scope=\"row\">Bandwidth</th> <td>5gb per month</td> <td>50gb per month</td> </tr> <!-- more rows like the two above here --> </tbody> <tfoot> <tr> <td></td> <td colspan=\"2\">Sign up now and save 10%!</td> </tr> </tfoot> </table> </body> </html> TABLES 140
Summary TABLES XX The <table> element is used to add tables to a web page. XX A table is drawn out row by row. Each row is created with the <tr> element. XX Inside each row there are a number of cells represented by the <td> element (or <th> if it is a header). XX You can make cells of a table span more than one row or column using the rowspan and colspan attributes. XX For long tables you can split the table into a <thead>, <tbody>, and <tfoot>.
Search
Read the Text Version
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
- 256
- 257
- 258
- 259
- 260
- 261
- 262
- 263
- 264
- 265
- 266
- 267
- 268
- 269
- 270
- 271
- 272
- 273
- 274
- 275
- 276
- 277
- 278
- 279
- 280
- 281
- 282
- 283
- 284
- 285
- 286
- 287
- 288
- 289
- 290
- 291
- 292
- 293
- 294
- 295
- 296
- 297
- 298
- 299
- 300
- 301
- 302
- 303
- 304
- 305
- 306
- 307
- 308
- 309
- 310
- 311
- 312
- 313
- 314
- 315
- 316
- 317
- 318
- 319
- 320
- 321
- 322
- 323
- 324
- 325
- 326
- 327
- 328
- 329
- 330
- 331
- 332
- 333
- 334
- 335
- 336
- 337
- 338
- 339
- 340
- 341
- 342
- 343
- 344
- 345
- 346
- 347
- 348
- 349
- 350
- 351
- 352
- 353
- 354
- 355
- 356
- 357
- 358
- 359
- 360
- 361
- 362
- 363
- 364
- 365
- 366
- 367
- 368
- 369
- 370
- 371
- 372
- 373
- 374
- 375
- 376
- 377
- 378
- 379
- 380
- 381
- 382
- 383
- 384
- 385
- 386
- 387
- 388
- 389
- 390
- 391
- 392
- 393
- 394
- 395
- 396
- 397
- 398
- 399
- 400
- 401
- 402
- 403
- 404
- 405
- 406
- 407
- 408
- 409
- 410
- 411
- 412
- 413
- 414
- 415
- 416
- 417
- 418
- 419
- 420
- 421
- 422
- 423
- 424
- 425
- 426
- 427
- 428
- 429
- 430
- 431
- 432
- 433
- 434
- 435
- 436
- 437
- 438
- 439
- 440
- 441
- 442
- 443
- 444
- 445
- 446
- 447
- 448
- 449
- 450
- 451
- 452
- 453
- 454
- 455
- 456
- 457
- 458
- 459
- 460
- 461
- 462
- 463
- 464
- 465
- 466
- 467
- 468
- 469
- 470
- 471
- 472
- 473
- 474
- 475
- 476
- 477
- 478
- 479
- 480
- 481
- 482
- 483
- 484
- 485
- 486
- 487
- 488
- 489
- 490
- 491
- 492
- 493
- 494
- 495
- 496
- 497
- 498
- 499
- 500
- 501
- 502
- 503
- 504
- 505
- 506
- 507
- 508
- 509
- 510
- 511
- 512
- 513
- 514
- 1 - 50
- 51 - 100
- 101 - 150
- 151 - 200
- 201 - 250
- 251 - 300
- 301 - 350
- 351 - 400
- 401 - 450
- 451 - 500
- 501 - 514
Pages: