|
|
|||
|
|||
|
|||
|
Student Help: Student Presentations ToolThe Presentations Tool allows students to upload files, usually webpages, to share with their class members. These files may be individual or group projects. Your instructor must add this tool before you can use it.
1. How do I use the student presentations tool? Click here to download these instructions in PDF File Types: File Names and Naming Conventions: HTML Files Image Files Uploading Files in the Student Presentation Tool
Troubleshooting: If you need to fix a file, edit it and upload the file again, overwriting the older version. Or, if you are familiar with html code, you may edit the file directly using the edit command when you are in the student presentations tool. 2. How do I insert, display, and align images on my webpage? Click here to download these instructions in PDF I. Getting Images and Setting Size:
II. Displaying Images on your Web Page: Images are displayed with the IMG tag. Valid image formats are GIF (Graphic Interchange Format) and JPG (Joint Photographer's Experts Group format). GIF is best for line art or images with just a few distinct colors; JPG is best for photographs. A basic image tag looks like this: <img src="samplepic1.jpg" width="82" height="97"> The IMG tag has a number of attributes : SRC - This specifies where to get the image to display. If the image is in the same directory as the HTML, all you need is the file name. WIDTH (and HEIGHT )- How many pixels wide the image is. If you specify a number that is different from the image's actual width, the browser will scale the image; it is best not to do this unless you have a good reason. You can omit this tag, but it makes the browser work harder, and can delay how long it takes to display a page, since all processing must stop until the actual image is downloaded. A more complex image tag looks like this: <img src="samplepic2.jpg" width="256" height="157" hspace="10" vspace="10" border="5" align="left"> This IMG Tag basically tells the browser that: This image, whose filename is samplepic2.jpg is 256 pixels wide by 157 pixels high, it has 10 pixels space around it (to keep text from getting too close), and it has a border of 5 pixels. HSPACE, VSPACE - specified in pixels, puts an invisible buffer space above and below (vspace) and on the sides (hspace) around the image. The buffer space keeps the text from getting too close to the image. BORDER - Places a border around the image in the same color as the default text color. ALIGN - Places the image in the left, right, top, middle or bottom. Left and right allow text to wrap around the image; top, middle and bottom refer to how the image aligns vertically with the line of text on which it is placed.
|
||
| ECAMPUS HELP | ECAMPUS COURSE SITES | CENTER FOR DIGITAL HUMANITIES | UCLA | |||
Copyright © 2004-2005 the Regents of the University of California. All rights reserved.
UCLA®, UCLA Bruins®, University of California Los Angeles® and all related trademarks are the property of the Regents of the University of California.