CLICK HERE FOR COMPLETE PHP NOTES
CLICK HERE FOR COMPLETE HTML NOTES
CLICK HERE FOR COMPLETE JAVASCRIPT NOTES
CLICK HERE FOR COMPLETE SEO NOTES
CLICK HERE FOR COMPLETE HTML NOTES
CLICK HERE FOR COMPLETE JAVASCRIPT NOTES
CLICK HERE FOR COMPLETE SEO NOTES
CLASS 4
<b<bgsound> : By using this tag we can play some background music on the WebPages.
Example Script
<HTML>
<HEAD>
<TITLE> testing </TITLE>
</HEAD>
<BODY>
<BGSOUND SRC="file:///F:\Demo\xyz.mp3" LOOP=10>
</BODY>
</HTML>
· <embed> : By using this tag we can embed external plugging to the video files and flash files on the web pages.
· autoplay : By using this property we can stop the execution of the embed file, when the page is loaded.
· loop : By using this tag we can run the embedded file continuously on the web page.Default value of the loop is false.
Example Script
<html>
<embed src=”funnyvideo1.avi” loop=false”>
</html>
· playcount : By using this property we can repeat the embedded file on the specified number of times.
· Anchor : By using this tag we can display the hyperlinks in the webpages. “href” is an attribute used to provide the path of the link.
Example HTML Script
<html>
<body link="red" alink="green" vlink="black">
<a href="http://www.google.com">Goog</a>
<a href="http://www.orkut.com">Goog</a>
<a href="http://www.gmail.com">Goog</a>
</body>
</html>
CLICK HERE FOR CLASS 3 CLICK HERE FOR CLASS 5