Introduction
HTML (Hypertext Markup Language) is the arrangement of markup images or codes embedded in a record planned for presentation on a World Wide Web program page. The markup advises the Web program how to show a Web page's words and pictures for the client. Every individual markup code is alluded to as a component (however numerous individuals likewise allude to it as a tag). A few components come in sets that demonstrate when some showcase impact is to start and when it is to end.
HTML is a formal Recommendation by the World Wide Web Consortium and is by and large held fast to by the real programs, Microsoft's Internet Explorer and Netscape's Navigator, which likewise give some extra non-standard codes. The present variant of HTML will be HTML 4.0. Be that as it may, both Internet Explorer and Netscape execute a few components contrastingly and give non-standard augmentations. Web engineers utilizing the more propelled elements of HTML 4 may need to outline pages for both programs and convey the fitting variant to a client. Huge elements in HTML 4 are some of the time portrayed all in all as dynamic HTML. What is at times alluded to as HTML 5 is an extensible type of HTML called Extensible Hypertext Markup Language (XHTML).
HTML Document
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Explain for you
- The <!DOCTYPE html> is a declaration to defines this document to be HTML5
- The text between <html> and </html> describes an HTML document
- The text between <head> and </head> provides information about the document
- The text between <title> and </title> provides a title for the document
- The text between <body> and </body> describes the visible page content
- The text between <h1> and </h1> describes a heading
- The text between <p> and </p> describes a paragraph
Click this link: All related to HTML?
Comments
Post a Comment