What is HTML?
HTML is the standard markup language for creating Web pages.- HTML remains for Hyper Text Markup Language
HTML portrays the structure of Web pages utilizing markup
HTML elements are the building pieces of HTML pages
HTML elements are spoken to by tags
HTML tags name bits of substance, for example, "heading", "passage", "table", et cetera
Programs don't show the HTML tags, however utilize them to render the substance of the page
Example Explained
- The <!DOCTYPE html> presentation characterizes this record to be HTML5
- The <html> element is the root element of a HTML page
- The <head> element contains meta data about the record
- The <title> element determines a title for the report
- The <body> element contains the obvious page content
- The <h1> element characterizes a huge heading
- The <p> element characterizes a section
A Test HTML Document
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
0 comments:
Post a Comment