Sanji Guide

Lesson 1: HTML Basics

Let's start building your first web page together!

🌟 What is HTML?

HTML stands for HyperText Markup Language. It is used to structure the content on the web.

HTML provides the skeleton of the page.

πŸ“š Common HTML Elements

πŸ”˜ Basic Structure

Here’s what a basic HTML page looks like:

<!DOCTYPE html>
<html>
  <head>
    <title>My First Page</title>
  </head>
  <body>
    <h1>Hello World!</h1>
  </body>
</html>
      

πŸ“Try it Yourself

Click the button below to open the code playground and experiment with this HTML code!

Try in Playground
HOME PAGE :

BACK