CLICK HERE FOR COMPLETE PHP NOTES
CLICK HERE FOR COMPLETE HTML NOTES
CLICK HERE FOR COMPLETE JAVASCRIPT NOTES
CLICK HERE FOR COMPLETE SEO NOTES
CLASS 3
I earlier informed to our readers that to learn “PHP”, we need to discourse about HTML. Today am going to discourse about HTML.
Basic Information of HTML:
ü HTML is client side scripting language.
*Client side scrip means = The script which is executing in client system with the help of browser inter fitters are called as client side script.
ü HTML stands for HYPERTEXT MARKUP LANGUAGE.
ü HTML is case insensitive language and error less language.
ü Save every HTML file with “.html” extension.
· <head>: By using this tag we can send some information through the HTTP head location.
Example HTML Script
<html>
<head>
My Name Is Dinesh
</head>
</html>
Write this code in notepad and save the notepad with “.html” extension.
· <marquee> : By using this tag we can scroll some content(text/image) on the webpage.
Example HTML Script
<html>
<marquee>
My Name is Dinesh
</marquee>
</html>