HTML Guide

Common HTML Tags outside <body>

head/Tags Definitions Examples
<!DOCTYPE html> the doctype No examples*
<html lang="en"> This page is set to “en” for English. This tag helps websites such as Google Translate know the default language for this page is English.
<meta charset="UTF-8"> No examples*
<meta http-equiv="refresh" content="0; url=$URL"> refresh the url No examples*
<title>...</title> To show the title on the top of the browser title should be assigment 3
<style>...<style> Section that describes the internal CSS of the page Show that makes this cell background black using id or group
<link rel="stylesheet" type="text/css" href="styles.css"> Tag that points to an external CSS file Both pages of this website are styld by one styles.css file.
<link rel="icon" type="image/x-icon" href="favicon.ico"> Tag that adds a favicon Look up at the top and you could see the world taekwondo icon.
back