HTML Tutorial HTML, that is. HyperText Markup Language, is the basic part of web development which is used to create web pages. It is a markup language that uses elements and tags to give structure and format to the content. Through HTML we can create things like headings, paragraphs, images, links, and forms. With its help, developers tell web browsers how the layout of a page should be, and it helps in organizing web content. Basic knowledge of HTML is essential for any web developer, as it is the foundation of web technologies.
Table of Contents
HTML Tutorial Learning with HTML
You can use the basic code given below and see its result.
<h1>easymake about us</h1> <p>Welcome to EasyMake.in, your one-stop destination for powerful, easy-to-use toolkit solutions</p>
</body> </html>
Title Code
Title code is used to show the name of your website or application.
<title>easymake</title>
Heading Code
Heading code is used to show the heading of your website or application. Ex- h1,h2,h3,h4,h5,h6 , Because there is a pattern of writing headings, the title is always in H1, the rest of the headings are in H2, H3, H4, H5, H6.
<h1>easymake about us</h1>
Paragraph Code
The code of paragraph is to show the paragraph written by you.
<p>Welcome to EasyMake.in, your one-stop destination for powerful, easy-to-use toolkit solutions</p>
Conclusion
There is also a pattern of writing all these codes, like there should be Title, head, body between HTML, similarly there should be Title or Paragraph between the head and body.