What is HTML?
HTML stand for Hyper Text Markup Language. Its Creating Web Pages.
HTML represents Hyper Message Markup Language, HTML is the standard markup language for making Site pages.
HTML of a progression of component
HTML components advise the program how to show webpage
HTML components name bits of content, for example, " this is a heading", "this is a paragraph", "this is a links", etc.
How to Write a Code
Many ways to write a code firstly we use NOTEPAD and then we use HTML editors.
1. Open NOTEPAD on your system.
CODE:
<html>
<head>
<title> first page </title>
</head>
<body>
<p> my first page
</body>
</html>
we use this code in notepad. its a starter code for a browser which type of code we written. when you complete the code then SAVE from file menu.It is save to name and extension .html in file name. Example: firstpage.html (it use in file name with .html)
Comments
Post a Comment