<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Heading 1</h1>
<p>Paragraph</p>
</body>
</html>
<html>
: Defines an HTML document<head>
: Contains metadata for the document<title>
: Defines a title for the document<body>
: Contains the visible page content<h1>
to <h6>
: Defines headings of different sizes<p>
: Defines a paragraph<a>
: Defines a hyperlink<img>
: Defines an image<ul>
: Defines an unordered list<ol>
: Defines an ordered list<li>
: Defines a list item<form>
: Defines a form for user input<input>
: Defines an input field<button>
: Defines a clickable button<label>
: Defines a label for an input element<select>
: Defines a drop-down list<option>
: Defines an option in a drop-down listid
: Defines a unique identifier for an elementclass
: Defines one or more classes for an elementstyle
: Defines inline CSS styles for an elementsrc
: Defines the URL of an image or other media elementhref
: Defines the URL of a hyperlinkalt
: Defines alternative text for an imagetype
: Defines the type of an input elementname
: Defines a name for an input elementvalue
: Defines a value for an input element