Html stands for Hypertext Markup Language. User can create and structure, sections, paragraphs, headings, links, and blockquotes, photo gallery for web-Site and web application which and use on computer and as well as on any device.
Html isn't a programming language, that means it doesn’t have the ability to create dynamic functionality. We can create only static web-pages Using HTML, it helps create Formatted documents, like Microsoft word.
Html having it's own format to write program with the help of tag and attribute and it also called html elements. In Html Every Tag required to start tag and end tag, but some tag don't need to end tag. can write which we want in between those tags.
Method to write HTML Code
starting tag <tag name> we write data here </tag name> closing tag.
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
<p>hello World</p>
</head>
<body>
<h1>Welcome to Techinbox</h1>
</body>
</html>
this is the structure of HTML & It's also called as HTML Boilerplate.
0 Comments