What is the correct tag for the largest heading in HTML?

<h1>

What are semantic HTML elements?

Elements with meanings which allow a reader of the document to understand the meaning of the element

The class attribute is defined as following:

        class=”name”

The class Attribute is used to devide different elements into logical groups

What is the “alt” - Attribute for?

The classname is case sensitive

Link the positions to corresponding persons.

An iframe is an element which is used to display a webpage within a web page. Is this statement true or false?

        True

URLs are used to define the path to a destination site or to a ressource needed in the HTML file.

What is the charset meta declaration used for?

It defines the character encoding of a document so that the browser can interpret it properly.

Choose how ids are referenced in CSS.

#idname

Which of the following statements are true?

document.getElementById(“demo”).innterHTML = “Hello JavaScript!”;

selects an element with the name “demo” and changes its text to “Hello Javascript”

In some cases IDs should be used more than once. Is this statement true or false?

False

An inline CSS is used to apply a unique style to a single HTML element.

An internal CSS is used to define a style for a single HTML a page.

An external style sheet is used to define the style for many HTML pages.

Who develops the different standards for the Open Web Platform?

         W3 Consortium (W3C)

Who is responsible for HTML standards?

        W3 Consortium (W3C)

What does the abbreviation CSS mean?

        Cascading Style Sheets

What is the &nbsp; entity for?

        Introduces a non-breaking space.

In HTML each element must have an ID. Is this statement true or false?

        False

What is new in HTML5? Select all corresponding answers.

An HTML page can have one unique id(s) applied to one specific element, while a class name can be applied to multiple elements.

In HTML special entities must be rferenced with “&#entityNumber;”. Is this statement true or false?

        False

Match the tags to the fitting type.

        <ol>, <table>, <ul> block elements

<style> CSS formatting

<i>, <strong>, <b> text formatting

What is the basic syntax of HTML tags that need one attribute?

        <tagName attributeName=”value”>content</tagName>


What does the abbreviation HTML mean?

        Hyper Text Markup Language

What do you need as a preparation for coding HTML?

What is the latest and recommended HTML5 version number?

        HTML 5.2

The form-handler is typically a server page with a script for processing input data. Is this statement true or false?

        True

Select all valid HTML elements.

Which attribute opens the action url in a new browser tab?

        target=”_blank”

The POST Method is used to transfer form input which is sensitive and shouldn’t be displayed open.

The GET Method is used to transfer form input in plaintext over the URL.

What is the correct tag for a line break in HTML?

        <br>

Select all statements which are true about the HTML canvas tag.

var c = document.getElementById(“myCanvas”);

var ctx = c.getContext(“2d”);

ctx.beginPath();

ctx.arc(95,50,30,0,2*Math.PI);

ctx.stroke();

draws a circle

The HTML <body> element is used to store <style> and <link> elements. Is this statement true or false?

        False

Select all elements which should be in the head tag.

Combine the tags to their purpose.

        <var> various text (probably)

        <pre> preformated text

        <code> used for program code

        <kbd> denotes keyboard input

        <samp> used for sample computer output

Select all contributions which contribute to an elements bounding box (pixel size) in the box model.

The title tag specifies additional information about an element, which is often shown as a tooltip when the mouse moves over an element. Is this statement true or false?

        False

Choose 3 ways to specify a color in HTML or CSS.

By whom Web Standards are made?

oder

🤷

How does the definition of the doctype of an HTML5 document look like?

        <!DOCTYPE html>

XHTML is a combination of the strength of both XML and HTML to allow browser to interpret the document more efficiently. Is this statement true or false?

        True


Select the right expression to introduce a special character using its entity number in your HTML code.

        &#

How a CSS class may be used?

        .classname

Which input type does not exist?