HOME C C++ PYTHON JAVA HTML CSS JAVASCRIPT BOOTSTRAP JQUERY REACT PHP SQL AJAX JSON DATA SCIENCE AI

HTML Tutorial

HTML (HyperText Markup Language) is the standard markup language used to create web pages. It is the building block of web development and is essential for creating the structure and content of a website. If you're looking for an HTML tutorial, here's a basic outline to get you started:

Basic Structure

The basic structure of an HTML document consists of the following elements:

  • <!DOCTYPE html>: Declares the HTML version being used (HTML5 in this case).
  • <html>: The root element of an HTML page.
  • <head>: Contains meta-information about the HTML document, such as character set, title, etc.
  • <body>: Contains the content of the HTML document, such as text, images, links, etc.

Example

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1> <p>My first paragraph.</p>
</body> </html>
You can click on above box to edit the code and run again.

Output

My First Heading

My first paragraph