It's an external resource! It's likely going to be one of 3 file formats, the Joint Photographic Exchange Graphic (JPEG) format, the Compuserve Graphics Interchange Format (GIF) or the Portable Network Graphic Format (PNG.)
JPEGs are compressed with a lossy algorithm (meaning the compressed data cannot be recovered.) This keeps them small, while still maintaining excellent quality. JPEGs are most often used for photos.
GIFs are a 256 color, lossless compression file. You only get 256 color, but one can be transparent. GIFs are best used for simple drawing, like icons and buttons. GIF can also be animated
PNG is a 16 million color lossless compression file that was built as replacement for GIF. This format allows for both pure transparency, as well as alpha level transparency. This transparency allow for effects like shadows. You can also put pictures in PNG, but they almost never compress as well as a comparable JPEG.
To use the external file on a webpage, you simply use the image tags source attribute to point to the address of the file:
<img src="http://www.example.com/i/logo.png" alt="AJS" />
Viola! You can also use relative addressing. So if this were my homepage, I could instead code as:
<img src="i/logo.png" alt="AJS" />
The <body> and </body> tags.
Images cannot be stored in the actual HTML file itself. HTML is always stored in a text file. Text files cannot store images. What will be in it is a reference to the image which enables the page to show the image, by looking to its location. When you open the HTML file in a browser, it will show the image.
Where is the HTML file on you blog?
The original extension of a HTML page was .htm because of file name restrictions that limited filetype extensions to 3 characters, today you can use 3 or 4 so either .html or .htm is perfectly fine.
Yes you need to put the file in the same directory. This will get the file to be executed from the HTML file.
If a graphic or picture, not a part of HTML, you can import them. Putting them in the same folder will make them work.
Hope these'll help!! Part 1 http://www.4shared.com/file/117152211/ebecba4/Cricket_97_Ashes_Tour_Part_1.html Part 2 http://www.4shared.com/file/117152213/e0b0aa88/Cricket_97_Ashes_Tour_Part_2.html Part 3 http://www.4shared.com/file/117152214/7ed43f2b/Cricket_97_Ashes_Tour_Part_3.html Part 4 http://www.4shared.com/file/117154181/f8519168/Cricket_97_Ashes_Tour_Part_4.html Part 5 http://www.4shared.com/file/117154183/165ff044/Cricket_97_Ashes_Tour_Part_5.html Part 6 http://www.4shared.com/file/117154184/883b65e7/Cricket_97_Ashes_Tour_Part_6.html Part 7 http://www.4shared.com/file/117154195/e6276430/Cricket_97_Ashes_Tour_Part_7.html Part 8 http://www.4shared.com/file/117154285/fd7aeb28/Cricket_97_Ashes_Tour_Part_8.html Part 9 http://www.4shared.com/file/117154305/34610b17/Cricket_97_Ashes_Tour_Part_9.html Finally Part 10! http://www.4shared.com/file/117157908/55f25d92/Cricket_97_Ashes_Tour_Part10.html Part 10 gives instructions how to install
The <body> and </body> tags.
Images cannot be stored in the actual HTML file itself. HTML is always stored in a text file. Text files cannot store images. What will be in it is a reference to the image which enables the page to show the image, by looking to its location. When you open the HTML file in a browser, it will show the image.
Where is the HTML file on you blog?
You can save your HTML file from the browser as an Archived HTML file, but the best way to send a HTML file and its folders is to zip it.
When you save an HTML file, the contents of that file are written on the hard drive. This has the effect of changing the contents of the file. When you read and HTML file, the file remains unchanged on the disk.
When you go to save your file, type in your desired file name, then type ".html" on the end. This tells Notepad that you want to save your document as an HTML file.
Web can be created by creating a .html file. Inside the HTML file, you can put the tags of HTML.
The original extension of a HTML page was .htm because of file name restrictions that limited filetype extensions to 3 characters, today you can use 3 or 4 so either .html or .htm is perfectly fine.
open HTML file, delete "code", save file
Yes you need to put the file in the same directory. This will get the file to be executed from the HTML file.