Html
What are Html headings?
HTML headings are defined with the <h1> to <h6> tags. Example <h1>This is a heading</h1> <h2>This is a heading</h2> <h3>This is a heading</h3>
Explain Html images.
HTML images are defined with the <img> tag. Example <img src="w3schools.jpg" width="104" height="142"> Change the width and height values to scale an image up or down.
Html
HTML is a language for describing and creating web pages. HTML stands for Hyper Text Markup Language. HTML is a markup language. A markup language is a set of markup tags. The tags describe how to format the document. HTML documents are also called web pages.
What are Html links?
HTML links are defined with the <a> tag. Example <a href="http://www.w3schools.com">This is a link</a>
Html Tags
HTML markup tags are usually called HTML tags. HTML tags are keywords (tag names) surrounded by angle brackets like<html>. HTML tags normally come in pairs like <b> and </b>. The first tag in a pair is the start tag, the second tag is the end tag. The end tag is written like the start tag, with a forward slash before the tag name. Start and end tags are also called opening tags and closing tags <tagname> content </tagname>
What are Html paragraphs?
HTML paragraphs are defined with the <p>tag. Example <p>This is a paragraph.</p> <p>This is another paragraph.</p>
Name as many Html tags as you can
Tag Description <b> Defines bold text <em> Defines emphasized text <i> Defines a part of text in italics <small> Defines smaller text <strong> Defines important text <sub> Defines subscripted text <sup> Defines superscripted text <ins> Defines inserted text <del> Defines deleted text
What is the purpose of web browsers?
The purpose of a web browser (such as Google Chrome,Internet Explorer, Firefox, Safari) is to read HTML documents and display them as web pages