Example Document
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<h1> This is a heading </h1>
<p> This is text </p>
<a href="https://example.com">This is a link</a>
<img src="at.png" width="99.99%" alt="Example Image">
</body>
</html>
The very first thing to know: The <!DOCTYPE html>
tag represents the Document Type and helps some browsers display correctly with your website, must only be used once. Most elements do need a closing tag, for example: </center>
.
The <head>
tag is needed to represent the head of the website. The <body>
tag is the same thing, but it's the body.
HTML Text
Some elements are meant to show text like <text>
, and <p>
.
<p> This is text </p>
HTML Headings
The <h>
tag has 6 different sizes, from <h1>
to <h6>
.
1 is the hugest, to 6 is the smallest.
<h1> This is a heading </h1>
HTML Links
The <a>
is a text element to represent links. Once clicked on the hyperlink, will redirect the user to a new link.
<a href="atproducts.xyz">Example Website</a>
HTML Images
The <img>
tag is to show a image. The width or height description can be used by pixels or percentages by displays. The alt
attribute shows up when the image doesn't load or can't load, it shows the description.
<img src="at.png" width="99.99% alt="Example Image">