HTML is a Web Page Designing Language with it we can design interactive user interface. HTML is the front end development primary Programming language.
HTML stands for Hypher Text Markup Language.
The Basic Syntax of HTML Markup Language is follow,
<html> - It is a starter for all html programs
<head> - It includes title tag and we can add styles here
<body> - All Designing tags and designing operations done here
<p> - Paragraph tag is used to write contents
HTML stands for Hypher Text Markup Language.
The Basic Syntax of HTML Markup Language is follow,
<html>
<head>
<title>Welcome to Fresherstarget</title>
</head>
<body>
<p>This is the sample program for HTML from Fresherstarget</p>
</body>
</html>
<head>
<title>Welcome to Fresherstarget</title>
</head>
<body>
<p>This is the sample program for HTML from Fresherstarget</p>
</body>
</html>
<html> - It is a starter for all html programs
<head> - It includes title tag and we can add styles here
<body> - All Designing tags and designing operations done here
<p> - Paragraph tag is used to write contents