Using Images in a Web Page
|
The way you insert your images depends on how you are using them:
- If you want the image embedded in the content of your page, use the image tag:
- If you want the image to be your page’s background, use the background attribute of the body tag:
- If you want the image to be a table background, use the background attribute of the table:
table row:
The image tag embeds an image in your HTML file.
To make an image appear as if it is embedded in the page, use the image tag,
, at the point in your file where you want the image to appear.
For example, this image was inserted using the image tag. The image tag was used in its own paragraph, to place it on its own line:
The image tag we used looks like this. Click on it to see what each part does.
Background Images
You can use an image as the background of an entire Web page.
To use an image as a page background of a Web page, add the “background” attribute to your page’s body tag, like this:
The background attribute’s value is the URL of the image you want to use for the page background. If this image is not large enough to fill the entire page, it automatically tiles (repeats) to do so.
Don’t go overboard with your background images! Remember that people have to read the text and see the other information that appears on top of it.
Here’s an example of a page background that uses the background well—see how it adds a little flavor without getting in the way. Here’s an example of a page background that uses the background poorly. The image was nice, but not the right choice for a background. Check out the HTML Basics: Backgrounds and Colors tutorial for more information on adding background images and colors.
Table Background Images
To place an image in the background of a table on a Web page, use the background attribute within a table tag.
To use an image as a table, table row, or table cell background, add the “background” attribute to the appropriate table tag, like this:
The background attribute’s value is the URL of the image you want to use for the table background.
Here’s a table with a background image:
Name Phone Email Sue Z. Queue 716 555-1212 [email protected] George Washington 212 555-9876 [email protected] James Brown 321 555-7777 [email protected] And here’s the actual background image:
Netscape Navigator’s rendering of table background images differs from that of Micrsoft Internet Explorer. Click on the options below to see an example of each.
- Netscaperenders a table background by fitting the image in each cell, tiling, if necessary. The lower part of the image is cut off because it doesn’t fit in the individual cells.
- Internet Explorer renders a table background by fitting/tiling the image in the entire table. The full image is tiled to fit the entire table area.
You should definitely keep this in mind when creating table backgrounds. And remember: Always view your pages in Netscape and Internet Explorer!
Check out the Project Cool Tables tutorial for more information on making tables.
Row and Cell Background Images
To place an image in the background of a table or a cell, use the background attribute within the tr, th, or td tag.
To use an image as a table row, or table cell background, add the “background” attribute to the appropriate tr, th, or td tag, like this:
The background attribute’s value is the URL of the image you want to use for the table background.
Here’s a table that contains one row and two cells with background images. click on the table title to see the code that created it.
If you have Navigator you will see the row effect. If you have IE, you will not. In this case, Navigator 4X supports the background attribute for table rows, but IE 5X does not. Cells are handled identically in both browsers.
Names & Numbers
NamePhoneEmail Sue Z. Queue 716 555-1212 [email protected] George Washington 212 555-9876 [email protected] James Brown 321 555-7777 [email protected] Check out the Project Cool Tables tutorial for more information on making tables.
Storing Image Files
Just as you do with .html files, you need to have a logical file structure for saving and calling your image files, as well as a logical naming convention for the files.
The images themselves aren’t actually placed in the .html file that displays them. Instead the file will call the images by name. The names can include either a full, exact path, or a relative path.
File Hierarchy
There are no hard-and-fast rules for file structure; HTML is flexible enough to accommodate many different storage schemes. But we heartily recommend the following simple approach:
- If all of your site’s HTML files reside in one directory, and if you have just a handful of image files, store your HTML files and image files in the same directory:
www
home
index.html
logo.gif
photo.jpgReferencing image files in the above directory setup is simple. For example, to reference logo.gif from index.html, you would enter:
.
- For any other situation than the above, store all of your image files in a separate image directory:
www
home
index.html
page1>
page1.html
links1.html
images
logo.gif
photo.jpg
thing.pngReferencing image files in the above directory setup is just a tad more subtle. To reference logo.gif from page1.html, you would enter:
.
The .. moves you up one level, from page1 to www. Then, the /images/ moves down from www to the images directory.
Image-File Naming Guidelines
There are no etched-in-stone rules for naming image files. But here are some useful guidelines:
- Use the 8.3 naming convention. That is, limit the first part of your filename to a maximum of 8 characters and append to this a 3-character extension. For example: myimage.gif, a.jpg, alleight.png, etc. These are all 8.3 no-nos: mycoolimage.gif, a.jpeg, all_eight.png.
Why? Because some of your users might be on platforms that do not support long filenames (Windows 3.x, for example).
- Use all lowercase letters.
Why? Because some servers (UNIX, for example) are filename case-sensitive and it’s all too easy to make an upper/lower-case mistake when entering a filename in your HTML docs.
- Do not use spaces or punctuation marks, except for underscores _ and dashes – .
Why? Because some servers might have trouble decoding these special characters.
Share the Post:The Best Mechanical Keyboards For Programmers: Where To Find Them
May 29, 2023When it comes to programming, a good mechanical keyboard can make all the difference. Naturally, you would want one of the best mechanical keyboards for programmers. But with so many
The Digital Panopticon: Is Big Brother Always Watching Us Online?
May 26, 2023In the age of digital transformation, the internet has become a ubiquitous part of our lives. From socializing, shopping, and learning to more sensitive activities such as banking and healthcare,
Embracing Change: How AI Is Revolutionizing the Developer’s Role
May 25, 2023The world of software development is changing drastically with the introduction of Artificial Intelligence and Machine Learning technologies. In the past, software developers were in charge of the entire development
The Benefits of Using XDR Solutions
May 24, 2023Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved
How AI is Revolutionizing Fraud Detection
May 23, 2023Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across
Companies Leading AI Innovation in 2023
May 22, 2023Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several
Step-by-Step Guide to Properly Copyright Your Website
May 18, 2023Creating a website is not easy, but protecting your website is equally important. Implementing copyright laws ensures that the substance of your website remains secure and sheltered. Copyrighting your website
Fivetran Pricing Explained
May 17, 2023One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of
Kubernetes Logging: What You Need to Know
May 16, 2023Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes
Why Is Ransomware Such a Major Threat?
May 15, 2023One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing
Tools You Need to Make a Data Dictionary
May 12, 2023Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as
10 Software Development Tips to Get Early Funding for your Startup
May 11, 2023If you’re thinking about a startup, it’s likely you need to raise an initial round of funding for your venture. This article covers some of the very early development techniques