HTML Reviewer
HTML Reviewer
HTML (HYPERTEXT MARKUP LANGUAGE) - is the code that is used to structure a web page and its content.
1. The opening tag: This consists of the name of the element (in this case, p), wrapped in opening and closing angle
brackets. This states where the element begins or starts to take effect — in this case where the paragraph
begins.
2. The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element
name. This states where the element ends — in this case where the paragraph ends. Failing to add a closing tag
is one of the standard beginner errors and can lead to strange results.
3. The content: This is the content of the element, which in this case, is just text.
4. The element: The opening tag, the closing tag, and the content together comprise the element.
Attributes - contain extra information about the element that you don't want to appear in the actual content.
<html></html> - wraps all the content on the entire page and is sometimes known as the root element.
<head></head> - acts as a container for all the stuff you want to include on the HTML page. Includes things like
keywords and a page description that you want to appear in search results.
<meta charset="utf-8"> - sets the character set your document should use to UTF-8
<meta name="viewport" content="width=device-width"> - element ensures the page renders at the width of viewport,
<title></title> - sets the title of your page, is also used to describe the page when you bookmark/favorite it.
<body></body> - contains all the content that you want to show to web users
Physical tag: These tags used to provide the visual appearance to the text.
Logical tag: These tags used to add some logical or semantic value to the text.
Marquee <marquee> - tag defines a scrolling text area in the HTML document that moves across the page in a
horizontal or vertical direction. (Not supported in HTML5)
Multimedia <embed> - causes the browser itself to include controls for the multimedia automatically provided browser
supports <embed> tag and given media type.
<noembed> - display a single JPG image if browser does not support <embed> tag.
.swf files - are the file types created by Macromedia's Flash program.
.wmv files − are Microsoft's Window's Media Video file types.
.mov files − are Apple's Quick Time Movie format.
.mpeg files − are movie files created by the Moving Pictures Expert Group.
Types of lists:
Table attributes
<caption></caption>