Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.07 KB

introduction.md

File metadata and controls

37 lines (24 loc) · 1.07 KB

⚑ Introduction to HTML

HTML is the standard markup language for the Web Pages. With HTML, You can create your own static web pages and websites.

HTML will operates as a top to bottom approach. Which means the HTML code will be rendered into web pages as line by line.

HTML has tags. That is the skeleton of the web page. Which defines how the content to be rendered and displayed to the viewpoint.

<!DOCTYPE html>
<html>
<head>
	<title>Page Title</title>
</head>
<body>

	<h1>Heading 1</h1>
	
	<p>This is a paragraph</p>

</body>
</html>

These <   > angle brackets are used to denote tags in HTML.

✦ Syntax of Tags

  • The tag is formed by open < angle bracket followed by tagname and ends with close >
  • For Void Elements, the end tag is neither required not allowed.
  • Self Closing tags are not exist in HTML. But it required Void Elements in XML, XHTML and SVG elements.

❮ Previous TopicNext Topic ❯

⌂ Goto Home Page