0% found this document useful (0 votes)
15 views

Basic HTML Template Reference Sheet

The document provides an HTML template for creating web pages and describes common HTML tags used to format text and sections on a page. The template includes tags for the document structure (<html>, <head>, <body>), title, and metadata. Common formatting tags are described like <p> for paragraphs, <h1-6> for headings, <br> for breaks, and <b>, <i>, and <strong> for text styling. Block level tags like <blockquote> are also included.

Uploaded by

Alex Nonya
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views

Basic HTML Template Reference Sheet

The document provides an HTML template for creating web pages and describes common HTML tags used to format text and sections on a page. The template includes tags for the document structure (<html>, <head>, <body>), title, and metadata. Common formatting tags are described like <p> for paragraphs, <h1-6> for headings, <br> for breaks, and <b>, <i>, and <strong> for text styling. Block level tags like <blockquote> are also included.

Uploaded by

Alex Nonya
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Basic HTML Template

We will use this template on every page we create. Please note anything in red is information you
need to replace in the template.

<!DOCTYPE html>
<html lang="en">
<!-- Place Your Name & Lab Name Here -->
<head>
<title> Place Your Title Here</title>
<meta charset ="utf-8">
</head>
<body>
Place Your Text Here
</body>
</html>

HTML Tags Used in the Body of the Website


These tags are used to format the page:

Open & Close Tag Description


Used to create a block of text. It will have a space above and
<p> </p>
below it like a paragraph in a paper
<h1> </h1>
<h2> </h2>
<h3> </h3> Used to create the page title and outline important items on your
<h4> </h4> page. A <h1> tag will be larger than a <h2> tag.
<h5> </h5>
<h6> </h6>
Creates a break on the page. This tag is slightly different from
<br>
others as it does not have a closing tag
<blockquote>
Indents a chunk of text on a webpage
</blockquote>

These tags are used to format the text:

Open & Close Tag Description


<b> </b> Bolds text
<i> </i> Italicize text
<mark> </mark> Highlights text
<small> </small> Small font sized – used for legal disclaimers and notices
<strong> </strong> Used for important text, displays bold

The Basic HTML Template and Formatting Tags

You might also like