HTML 1

o Hvad står HTML for?.

HTML stands for Hyper Text Markup Language

o Hvem opfandt HTML?

Tim Berners-Lee

o Hvilken version af HTML er den nyeste (og den vi skal anvende)?

HTML5.2

o Hvad indeholder <body>?

Defines the document's body, The <body> element contains all the contents of an HTML document, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.

Note: There can only be one <body> element in an HTML document.

o Hvad kan <head> blandt andet indeholde og hvad SKAL det indeholde?

The <head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag.
Metadata is data about the HTML document. Metadata is not displayed.
Metadata typically define the document title, character set, styles, scripts, and other meta information.

The following elements can go inside the <head> element:

<title> (required in every HTML document)
<style>
<base>
<link>
<meta>
<script>
<noscript>

Extra

Undersøg hvorfor du helst skal kalde din fil index.html (eller index.html eller default.html eller default.htm) og skriv endnu et afsnit om dette. Skriv heri også gerne hvilken søgestreng (det du skrev i Google) du anvendte.?

Søgte på: "why should one create a index.html" og fand dette link og https://www.mikedane.com/web-development/html/creating-an-html-file/ eller https://www.thoughtco.com/index-html-page-3466505

Index.html file is the main page or Home page of any website. When you enter the domain address of your site then the server will try to find the file with name index.html(commonly, if not present will search for home.html/default.html). If any of these file is available with this name then the browser will load that page by default, If not a directory(index) of the files and links will be shown.

Because the server doesn’t know which file to show first, so the name of all the files with links will be listed on the screen instead of the homepage. for example when you enter avast .com in the URL tab it will take you to the homepage of Avast because that homepage is named as index.html. That’s why you should name your homepage as index.html to avoid any error.

In this case, all you need to know is that when we name the HTML file index.html, and it’s at the root directory of our website, the browser will think that it’s the homepage of our site!