HTML & CSS Training Overview
31 Questions
0 Views

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to lesson

Podcast

Play an AI-generated podcast conversation about this lesson

Questions and Answers

What does HTML stands for?

  • Hyper Text Markup Language (correct)
  • Hyper Text Mark Language
  • Hyperlink Text Markup Language
  • Hyper Text Machine Language
  • HTML is the standard markup language for creating ___________.

  • PDF documents
  • Web Pages (correct)
  • Excel sheets
  • Word documents
  • What does HTML describe?

  • Styling of a web page
  • Content of a web page
  • Structure of a web page (correct)
  • Functionality of a web page
  • HTML consists of a series of elements

    <p>True</p> Signup and view all the answers

    What does HTML elements tell the browser to do?

    <p>Display the content</p> Signup and view all the answers

    What are tags?

    <p>Commands within an HTML document that specifies the formatting of the document or a portion of that document.</p> Signup and view all the answers

    What tag holds the programming scripts?

    <p>Script Tag</p> Signup and view all the answers

    What does NoScript tag inform the user?

    <p>That his/her browser does not support the script language.</p> Signup and view all the answers

    Link tags are hyperlinks to another webpages.

    <p>False</p> Signup and view all the answers

    What command will you use to link stylesheet? (Select all that apply)

    <link rel="stylesheet" type="text/css" href="test.css"/> Signup and view all the answers

    What attribute of <meta> tag can be used for defining the character set for the webpage?

    <p>charset</p> Signup and view all the answers

    What does <meta> tag define?

    <p>The &lt;meta&gt; tag defines keywords to help search engines, helps different devices on how to render the webpages.</p> Signup and view all the answers

    What does <meta name="keywords" content="keyword 1, keyword2, keyword3" /> define?

    <p>Keywords for the search engine.</p> Signup and view all the answers

    What does <meta name="viewport" content="width=device-width, initial-scale=1.0" /> define?

    <p>It helps mobile devices in rendering the webpage.</p> Signup and view all the answers

    HTML documents have four areas: DOCTYPE, HTML, Head and Body

    <p>True</p> Signup and view all the answers

    What does DOCTYPE tag indicate?

    <p>The type of the document</p> Signup and view all the answers

    Head tag does not include the script.

    <p>False</p> Signup and view all the answers

    Most tags in HTML code have an opening tag and closing tag.

    <p>True</p> Signup and view all the answers

    How can you determine whether you need a closing tag?

    <p>Think if the browser needs the ending tag.</p> Signup and view all the answers

    Entities display symbols and characters.

    <p>True</p> Signup and view all the answers

    What are comments in the HTML code?

    <p>Comments are an explanation of part of the webpage code, or a note to another developer or a placeholder for future text.</p> Signup and view all the answers

    Comments will show in the browser.

    <p>False</p> Signup and view all the answers

    How do you add a comment to the the HTML code?

    <p>Use: <!-- some commented text --></p> Signup and view all the answers

    You can use HTML code to create a single line comment or multiple line comment.

    <p>True</p> Signup and view all the answers

    What is the best way to check if the browser supports Javascript?

    <p>Use a script tag</p> Signup and view all the answers

    A webpage should include a paragraph about yourself.

    <p>True</p> Signup and view all the answers

    A webpage title should be your Cafe name.

    <p>True</p> Signup and view all the answers

    A webpage should contain a link to the test.css file.

    <p>True</p> Signup and view all the answers

    A webpage without a meta data will not be crawled by search engines.

    <p>False</p> Signup and view all the answers

    The width of the page should render properly on different mobile devices.

    <p>True</p> Signup and view all the answers

    The page should be translated by google search engine.

    <p>False</p> Signup and view all the answers

    Study Notes

    HTML & CSS Training

    • Training date: June 25th, 2024
    • Course trainer, course overview, today's session, and grading system are topics covered in the presentation.
    • Course overview: Focuses on what will be studied (HTML & CSS in 6 domains) and how it will be studied (pre-assessment, class lessons, exercises, workbooks, in-class projects, quizzes, assignments, additional videos, and post-assessments).
    • Domains of study: HTML Fundamentals, CSS Fundamentals, Document Structure Using HTML, Multimedia Presentation Using HTML, Webpage Styling Using HTML, Accessibility, Readability, and Testing
    • Learning methods: Pre-assessment to gauge prior knowledge. Class lessons to teach objectives and concepts, exercise labs for hands-on practice. Workbooks to prepare for exams, in-class projects for collaborative learning. Quizzes and assignments to assess understanding. Additional video material for home reference. Post-assessment to measure knowledge gained from training.
    • Grading system details: Pre-test (10%), Attendance (10%), Class Performance (10%), Quizzes (5%), Assignments (10%), Exams (65%), and Post-test (-), totaling 100%.
    • Today's session: Domain 1 - HTML fundamentals, introduction to HTML and CSS. Includes preparation, coffee break, and session outline for the first domain.
    • Today's session also clarifies the group project: Build a welcome HTML page.
    • What is HTML: HTML is a standard markup language for creating Web pages. It describes the structure of a webpage using a series of elements. Elements label content (headings, paragraphs, links, etc.) to tell the browser how to display it.
    • What is HTML?, History of HTML, Why are we studying it (3-Tier Architecture), Setting up Visual Studio Community, and Pre-assessment are also part of the course.
    • Setting up the environment: Download and install Visual Studio Community, Access Blue domain to the training center system. Download the materials (workbook, video lessons, project files), Exams (pre-assessments, post-assessments, and exams), and access Gmetrix using these links
    • First Domain: HTML Fundamentals objectives: construct markup that uses metadata elements, including script, noscript, style, link, meta tags (encoding, keywords, viewport, description), and well-formed page markup (DOCTYPE declaration, html, head, body). The goal for this domain is to build a Welcome Web page.
    • Lesson 1: Markup with Metadata: Tags for HTML documents (commands specifying formatting). Most have opening and closing tags, some (void elements) do not. Introduces different tags like Script, Head, Body, NoScript, Link tags, and their functions.
    • Lesson 1: Markup with Metadata (Meta Tags): Defines characteristics for search engines and how webpages are rendered on various devices to configure the site, including character set, keywords, description etc..

    Domain 1: HTML Fundamentals (Session 2)

    • Review on previous session, pre-assessment for domain 1, and group project/group project: Build a Café HTML page. Coffee and prayer break.
    • Lesson 2: Well-Formed Markup: Four HTML document areas. Includes DOCTYPE (specifying document type, like HTML5), HTML (root element of the document), Head (elements not shown directly on the page e.g. title, meta-data, links). Body (visible content). Overview of tags and their uses, void elements, and entity usage.
    • Lesson 2 comments within HTML code: Comments will not appear on the webpage and are helpful for explaining code to others. Single and multiple line comments are possible.

    Lesson 2: Well-Formed Markup (Continued)

    • HTML entities: How to use special symbols like "<" or "&" on a webpage, using entities (< >, & etc.).
    • In-class group project for a Café Page: Detailed instructions for creating a Cafe-themed webpage with welcome messages, copyright, Javascript for support, menu with prices, comments, and meta descriptions.

    Studying That Suits You

    Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

    Quiz Team

    Related Documents

    Description

    This presentation covers the key topics of the HTML & CSS training program scheduled for June 25th, 2024. It includes the course trainer, an overview of the study domains, learning methods, and the grading system, ensuring a comprehensive learning experience in web development.

    More Like This

    HTML and CSS Fundamentals
    10 questions
    HTML and CSS Fundamentals Quiz
    5 questions

    HTML and CSS Fundamentals Quiz

    HeartfeltTropicalRainforest avatar
    HeartfeltTropicalRainforest
    Web Technologies and HTML Fundamentals
    5 questions

    Web Technologies and HTML Fundamentals

    CooperativeActionPainting1556 avatar
    CooperativeActionPainting1556
    Use Quizgecko on...
    Browser
    Browser