Answers ( 2 )

  1. 05 Feb 2025

    HTML is one of the structured language,It also called HyperText Markup Language. It is used for design web pages. We can understand this language easily. Mainly the structure of HTML is, first we will be started by

    <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>

    0
  2. 06 Feb 2025

    HTML (Hypertext Markup Language) is the language used to create and structure web pages. It translates the content of a web page, such as paragraphs, sentences, links, images, etc. simple example of html is mention below: <!DOCTYPE html> <html> <head> <title>My First Webpage</title> </head> <body> <h1>Welcome to My Website</h1> <p>This is a paragraph of text.</p> <a href="https://www.example.com">Click here</a> to visit Example.com. <img src ="image.jpg" alt="An example image"> </body> </html>

    0

Leave an Answer


sahebali

Ask by sahebali

Ask Me As you like.

 Prev question

Next question