Register for an Account
Congratulations! Your account registration has been submitted.
You'll receive an email shortly with more information. Welcome!
HTML Tag | Definition |
---|---|
<html> | Defines the root of an HTML document, wrapping all content. |
<head> | Contains metadata and links to external resources like stylesheets and scripts. |
<body> | Holds the main content that is displayed on the webpage. |
<title> | Sets the title of the web page, displayed on the browser tab. |
<h1> to <h6> | Define headings, with <h1> being the largest and <h6> the smallest. |
<p> | Represents a paragraph of text. |
<a> | Creates hyperlinks to navigate to other pages or resources. |
<img> | Embeds images into the web page. |
<div> | Defines a container or section for grouping content, often styled with CSS. |
<ul> and <li> | Create unordered lists; <li> defines each list item (use <ol> for ordered lists). |