HTML Basics: Elements, Attributes, Structure, Images, Headings, Paragraphs, and Links
Classified in Computers
Written at on English with a size of 1.58 KB.
HTML Basics
All HTML documents must start with a document type declaration: <!DOCTYPE html>.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is between <body> and </body>.
HTML Elements
Elements consist of a start tag and end tag, with the content inserted in between:
<tagname>Content goes here...</tagname>
HTML Attributes
All HTML elements can have attributes.
Attributes provide additional information about an element.
Attributes are always specified in the start tag.
Attributes usually come in name/value pairs like: name="value"
HTML Structure
<!DOCTYPE html>
<html>
<body>
My First Heading</h1>
My first paragraph.</p>
</body>
</html>
HTML Images
In HTML, images are defined with the <img> tag.
<img src="img_girl.jpg" alt="Girl in a jacket">
HTML Headings
Headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading.
<h1>Heading 1</h1>
HTML Paragraphs
The HTML <p> element defines a paragraph.
HTML Links
Links are defined with the <a> tag:
<a href="url">link text</a>
<a href="https://www.w3schools.com/html/">Visit our HTML tutorial</a>