What is html code

What is Html? 🙄 And why this Html? Is it important for you?

HTML is the standard markup language for Web pages. html code is instructions for your browser. When you visit a website that time your browser read some instructions and make some view.

HTML is the standard markup language for creating Web pages.
  • HTML stands for Hyper Text Markup Language
  • HTML describes the structure of a Web page
  • HTML consists of a series of elements
  • HTML elements tell the browser how to display the content
  • HTML elements are represented by tags
  • HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
  • Browsers do not display the HTML tags, but use them to render the content of the page.

Now is it 
important?

Of course, it's important. We can't think a website without html. Html is the base of a web site view.

How to write and run html code.
Html Code
Html code example
<!DOCTYPE html>
<html>
<head>
<title>My 1s web page</title>
</head>
<body>
<h1>Hello World</h1>
<p>My first paragraph.</p>
</body>
</html>


Powered by Blogger.