The HTML <marquee> tag is used for scrolling piece of text or image displayed either horizontally across or vertically down your web site page depending on the settings.
Follow the following steps to save you html filed As we installed notepad ++ (we will use same install file for the whole html learning in the blog) If you have not install notepad ++ To lean to install ClickHere Step 1: Click on file and save as show in the figure below: Step 2:- After you click file >save you will get following windows : As show in the above picture:- First select the folder when you want to save you project work. second give name to you file ( i.e. your_file_name.html) extension is required as the .html browser doesn't understand .txt file (if you save you file with .txt format the code will be display as you wrote in the notepad ++) First image saved file as text second image display of the text file in browser ...
help_file Download help_file to learn more on the html You get complete html file with code to help you with the practice To download help_file.rar CLICK HERE If you want to learn about extracting zip, rar file CLICK HERE
<body> tag:- The <body> tag defines the document's body. The <body> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc. Attribute used in <body> tag:- Attribute Description BGCOLOR Specifies the background color of a document BACKGROUND Specifies a background image for a document TEXT Specifies the color of the text in a document LINK Specifies the color of un visited links in a document VLINK Specifies the color of visited links in a document ALINK Specifies the color of an active link in a document Example:- <html> <head> <title>Index </title> <head> <body bgcolor="lightblue" text="black"> <body> </html> Here is an screen capture of the example:- To Download the Example Html File:- ClickHere
Comments
Post a Comment