Test the html markups

What is HTML?

HTML stands for Hypertext Markup Language. HTML is the most widely used language for developing web applications. HTML5 is the current version and was published in 2012. It is used to create websites and web applications. Let's break it down better to understand the name- Hypertext, or "hypertext," refers to the "text wrapped within a text." It is similar to a hyperlink in that it contains underlying text that, when clicked, redirects to a different webpage. Markup Language, A markup language is not necessarily a programming language.

Instead, it is used to apply formatting and layout to a simple text document. This leads to more interactive and dynamic text content. Web page, A web page is a document that is commonly coded in HTML and rendered by a web browser. A URL identifies every web page and can be static or dynamic according to the requirements. We can create static web pages if we only use HTML for development.

<html>
  <head>
    <title> Test Page </title>
    <meta name="description" content="This is a test web page." />
    <meta name="keyword" content="HTML, XML" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  </head>
  <body>
    <p>This is a test web page.</p>
  </body>
</html>

 

Up Next
    Ebook Download
    View all
    Learn
    View all