Web Tools Table Maker3schools TranslateImage CompressorFavicon Icon GeneratorCrop & Resize Image
Apu
Apu February 04, 2023 › #Html #Html Tutorials

What is HTML ?

What is HTML?

  1. HTML's full form is Hyper Text Markup Language. It's not a programming language, Markup Language.
  2. To be a web developer or to create a website, this language will have to learn well before all. But it is very easy to learn it.
  3. You can create a web page if you learn it. Then if you learn CSS, then you can set those pages a little more, then JavaScript, Php etc.

HTML History:


An engineer named Tim Berners-Lee created www to explore the Internet world. www is the row of servers that store information about all the files spread across the Internet. He invented the language HTML in 1980. 

The documents on the webserver are called web pages. These web pages are primarily based on the HTML language. Web pages may contain text, images, etc.
In one place these web pages are called a bunch of websites.

How many web pages are stored in one place is called a website. Each website has its own address. This is called a web address or URL

For example https://www.google.com


The information we see on the Internet is stored on special types of computers. These are called web servers.
The software we use to view information on a web server is called a web browser.

A Simple Example of HTML:

<!DOCTYPE html>
 <html>
    <head>
      <title> 3schools</title>
    </head>
    <body>
      <h1>This is heading 1</h1>
      <h2>This is heading 2</h2>
      <h3>This is heading 3</h3>
      <h4>This is heading 4</h4>
      <h5>This is heading 5</h5>
     </body>
  </html>

save
listen
AI Answer
Write Your Answer
loading
back
View All