ICT 8

Cards (52)

  • What is web design?
    Web design is the process of planning, conceptualizing, and implementing the plan for designing a website.
  • Why is it important for websites to have an array of elements presented in an easy-to-navigate way?
    It enhances user experience and facilitates easier access to information.
  • What does WWW stand for?
    World Wide Web.
  • What is the World Wide Web?
    The World Wide Web is a collection of interlinked information stored in computers around the world.
  • What does HTTP stand for?
    Hypertext Transfer Protocol.
  • What is the purpose of HTTP?
    HTTP is a set of rules for exchanging text, graphics, sound, video, and other multimedia files.
  • What are web pages?
    Web pages are linked documents or pages of information on the web.
  • What is a server in a client-server environment?
    A server is a software program that interacts with client software and responds to requests for information.
  • What is a client in computing?
    A client is a software program that requests information from another software program on a different computer.
  • Who is Tim Berners Lee?
    Tim Berners Lee is the director of the World Wide Web Consortium (W3C).
  • What is a homepage?
    A homepage is the first or main page of a site on the WWW.
  • What does URL stand for?
    Uniform Resource Locator.
  • What is the function of a URL?
    A URL is the address of a unique resource on the internet used by browsers to retrieve published resources.
  • What does website structure define?
    Website structure defines how pages and information are organized in relation to one another.
  • What are the types of website structures?
    • Hierarchical Structure: Organizes information in a top-down style.
    • Linear Structure: Presents information in a sequential order.
    • Webbed Structure: Multiple areas of the site linking to each other.
    • Database Structure: Accesses information based on specific queries or criteria.
  • What does HTML stand for?

    HTML stands for Hypertext Markup Language.
  • What is the purpose of HTML?

    HTML describes the structure of a web page and tells the browser how to display the content.
  • What is the role of a web browser?
    The purpose of a web browser is to read HTML documents and display them correctly.
  • How does a paragraph start in HTML?
    A paragraph always starts on a new line and is usually a block of text.
  • What does the <title> element do in HTML?
    The <title> element specifies a title for the HTML page shown in the browser’s title bar or tab.
  • What does the <body> element define?
    The <body> element defines the document’s body and is a container for all visible contents.
  • What does the <h1> element define?
    The <h1> element defines a large heading.
  • What does the <p> element define?
    The <p> element defines a paragraph.
  • What is unique about the <br> element?
    The <br> element doesn’t have an end tag, making it an empty element.
  • What does the <b> element define?
    The <b> element defines bold text without any extra importance.
  • What does the <strong> element define?
    The <strong> element defines text with strong importance, usually displayed in bold.
  • What does the <i> element do?
    The <i> element displays text in italic.
  • What does the <em> element do?
    The <em> element emphasizes text.
  • What does the <mark> element do?
    The <mark> element displays text in marked or highlighted versions.
  • What does the <small> element do?
    The <small> element makes text smaller.
  • What does the <del> element do?
    The <del> element deletes texts.
  • What does the <sub> element do?
    The <sub> element makes texts look subscript.
  • What does the <sup> element do?
    The <sup> element makes texts look superscript.
  • What does the <hr> element symbolize?
    The <hr> element symbolizes the horizontal rule which draws a straight line.
  • What is the property that defines the background element for an HTML element?
    background-color
  • What is the code used when you want to change the background color to pink?
    <body style="background-color:pink;">
  • What property defines the text color of an HTML element?
    The CSS color property
  • What is the code used when you want to change the color of heading 1 to pink?
    <h1 style="color:pink;">
  • What property defines the font to be used for an HTML element?
    The CSS font-family property
  • What is the code used when you want to change the font of the paragraph to Cambria?
    <p style="font-family:cambria;">