Page 1 :
CHAPTER 6, HTML TAGS, Answer the following questions., 1. Expand the term HTML, Ans: Hyper Text Markup Language., 2. How would you display text in title bar of your web browser?, Ans: for displaying text in title bar, type the text in between <title>, and </title>., 3. Explain the basic structure of HTML., ans:, <html>, <head>, <Title> title of the web page</title>, </head>, <body>, Body of webpage, </body>, </html>, HTML: it is the foundation of webpages. Also known as root element., It indicates the beginning of a webpage. All other tags are placed, inside <html> and </html>, HEAD: It does not contain any text that we see on webpage. It is an, optional tag. Head tag includes title tag. Written as <head> </head>.
Page 2 :
TITLE : begins with <title> and ends with </title>. It is a container tag., Always seen inside head tag. Displays the title on the top of, webpage., BODY : defines the document body. Includes text, images, audio, links, etc., 4. Compare container tag and empty tag., Ans:, , Types of tags, , Description, , Container tag, , These tags have a start, and an end tag., , Empty tag, , These tags have only, the start tag and no end, tag., , Examples, <b>..</b> ,, <html>…</html>, <body>…</body>, <img>, <br>, <hr> , <li>, , 5. Describe the types of html editors., Ans: html editors are software applications that are used to create, html documents., WYSIWYG – What You See Is What You Get. A simple editor that, does not use HTML code. Eg: Adobe dreamweaver, Microsoft, expression web., MICROSOFT EXPRESSION WEB – A free software developed by, Microsoft., Text editors – notepads, coffee cup, bluefish etc are important, editors.