HTML (Hypertext Markup Language) is the set of markup symbols and that says to web browser how to display a Web page's words and images for the user.
HTML is mark up language
HTML is not case sensitive mark up language.
Each individual markup code is referred to as an element.
Each tag has an opening tag and closing tag.
<title>
</title>
But every tag are not closing tags.They are called Empty Tags.
<br>
When create HTML file using any ASCII supporting editor as like notepad, sublime, WordPad.
When we save this HTML Document using .html or .htm as file extension.
EX:- first code.html
Lets see basic syntax in html.
TITLE Encloses the text that will appear in the browser title bar when the page is loaded. The TITLE container is itself contained within the <HEAD> tags.
When start the html document using <html> tag.
The <TITLE> tag is used to specify the text appears in the Web browser’s title bar.
Ex:-
<html>
<head>
<title>My first web page</title>
</head>
</html>
Type this code in notepad, save and open with using web browser.
0 comments:
Post a Comment