QUARTER 4

Cards (61)

  • What does HTML stand for?
    Hypertext Markup Language
  • What is the basis of HTML?
    It is based on SGML
  • What does hypertext refer to in HTML?
    Text that points to other pages
  • What does markup refer to in HTML?
    Code that provides details about elements
  • What does language refer to in HTML?
    How HTML is structured to create documents
  • Who is the inventor of the web?
    Tim Berners-Lee
  • What was Tim Berners-Lee's idea for the web?
    Linking research papers for easy access
  • What is the first version of HTML called?
    HTML 2.0
  • What significant update was made in HTML 4.0?
    Integration of CSS and DHTML
  • When was HTML 5 released?
    2012
  • What is a static webpage?
    A page that appears the same for all users
  • What is a dynamic webpage?
    A page that displays varying content for users
  • What is the function of a browser?
    To retrieve and display web data
  • What is the most common browser?
    Google Chrome
  • What is Notepad used for in HTML?
    To write HTML code
  • What is the purpose of the <html> tag?
    It indicates the start of an HTML document
  • What does the <title> tag define?
    The title of the HTML document
  • What is the structure of a basic HTML document?
    It includes doctype, html, head, and body
  • What are the basic HTML tags?
    • <!DOCTYPE>
    • <html> </html>
    • <head> </head>
    • <title> </title>
    • <body> </body>
  • What is the purpose of the <body> tag?
    To enclose the content of the webpage
  • What is a well-formed tag?
    A tag that has both opening and closing tags
  • What is an empty tag?
    A tag that does not require an end tag
  • What are nesting tags?
    Tags arranged in a specific order
  • What are the steps to create an HTML document using Sublime Text?
    1. Right-click on desktop
    2. Click new, select text document
    3. Change extension to .html
    4. Open with Sublime Text
  • What are the steps to create an HTML document using Notepad?
    1. Open Notepad
    2. Edit HTML data
    3. Click file, then save as
    4. Change extension to .html
    5. Click save
  • What is the URL for downloading Sublime Text?
    https://www.sublimetext.com/
  • What is the purpose of the <head> tag?
    To hold general information about the page
  • What does the <!DOCTYPE html> declaration do?
    It specifies the document type for HTML
  • What is the purpose of spacing tags in HTML?
    To create spacing for the website
  • What is the significance of the <br> tag?
    It creates a line break in HTML
  • What is the tag used for line breaks in HTML?
    <br> or <br />
  • How do line break tags function in HTML?
    They break lines of text where they appear
  • What is the structure of a basic HTML document?
    • <!DOCTYPE html>
    • <html>
    • <head>
    • <title>Title</title>
    • </head>
    • <body>
    • Content goes here
    • </body>
    • </html>
  • What are the sources mentioned in the study material?
    1. Brief history of World Wide Web - https://www.w3.org/People/Raggett/book4/ch02.html
    2. https://www.sublimetext.com/
    3. https://www.w3schools.com/
  • What tag is used to start a paragraph in HTML?
    <p>
  • What tag is used to end a paragraph in HTML?

    </p>
  • What is the purpose of paragraph tags in HTML?
    To separate paragraphs from previous content
  • What is the tag used to create a horizontal rule in HTML?
    <hr /> or <hr>
  • What does the horizontal rule tag define in HTML?
    A thematic break in the content
  • What attributes can be used with the horizontal rule tag?
    Align, size, width, color