A simple guide to understand HTML basics
HTML stands for HyperText Markup Language. It is the standard language for creating webpages and web applications.
HTML elements are the building blocks of an HTML page. An element typically consists of an opening tag, content, and a closing tag.
<p>This is a paragraph.</p>
Every HTML document starts with the declaration of the document type, followed by the opening <html>
tag, and includes essential sections like <head>
and <body>
.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page Title</title>
</head>
<body>
<h1>Welcome</h1>
<p>This is a basic page structure</p>
</body>
</html>
Forms allow users to submit data to a website. The basic elements include <form>
, <input>
, and <button>
.
<form action="#" method="post">
<input type="text" name="name" placeholder="Your Name">
<button type="submit">Submit</button>
</form>