DEV Community

Cover image for Day-8 of Learning HTML
Rakshambika
Rakshambika

Posted on • Edited on

Day-8 of Learning HTML

Today, I learned about the Basic things in HTML like who created HTML? , Why HTML is introduced?

Who Invented HTML?

Tim Berners-Lee invented HTML in 1991 while working at CERN in Switzerland.

He also invented:

  • World Wide Web (WWW)
  • HTTP (HyperText Transfer Protocol)
  • URL (Uniform Resource Locator)

His goal was to help researchers share information easily through connected documents.

Why Was HTML Created?

Before HTML:

  • Information was stored in separate computers.
  • Sharing documents was difficult.

HTML introduced:

  • Hyperlinks (clickable links)
  • Structured documents
  • Easy information sharing over the internet

This became the foundation of modern websites.

Uses of HTML:

HTML is used to:

Create Web Pages

<h1>Welcome</h1>
Enter fullscreen mode Exit fullscreen mode

Display Text

<p>This is a paragraph.</p>
Enter fullscreen mode Exit fullscreen mode

Add Images

<img src="flower.jpg">
Enter fullscreen mode Exit fullscreen mode

Create Links

<a href="https://www.google.com">Google</a>
Enter fullscreen mode Exit fullscreen mode

Create Forms

<form>
    <input type="text">
</form>
Enter fullscreen mode Exit fullscreen mode

Create Tables

<table>
    <tr>
        <td>Data</td>
    </tr>
</table>
Enter fullscreen mode Exit fullscreen mode

Embed Videos and Audio

<video></video>
<audio></audio>
Enter fullscreen mode Exit fullscreen mode

What is a Tag?

A tag is a keyword enclosed within angle brackets < >.

Tags tell the browser how to display content.

Examples

<h1>Hello</h1>
<p>Paragraph</p>
Enter fullscreen mode Exit fullscreen mode

Here:

<h1> = Opening tag
</h1> = Closing tag

Stay tuned for more updates and exciting web development concepts!

Top comments (0)