HTML Flashcards

1
Q

What does HTML stand for ?

A

Hyper Text Markup Language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does the Browser do with the Markup ?

A

He interprets the markup and displays it on the screen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does HTTP stand for ?

A

Hyper Text Transport Protocol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what does HTTP do ?

A

It is a method that alows us to exchange the html documents from somewhere (mostly a server) to the browser. Via HTTP the browser sends a Request and this Request then gets answered by the Server and sends the according documents.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does URL (or URI) stand for ?

A

Universal Resource Locator (Identifier)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What tells indicate to the browser ?

A

It indicates that everything in this Document will be Marked up text from (most of the time) html5.
In short Doctype indicates what type of document this is

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the tags use ?

A

Its the root container of the document in that all the markup is written

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is typically inside a tag ?

A

The contains metadata and extra information that wont be rendered to the user in the webpage itself.
Examples:
Displays something in the browsers tab
a reference to a stylesheet or a javascript file
provides metadata about how to render the page
code that can make our website more interactive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What goes into the ?

A
All the content of the page that gets displayed .
examples: 
text
lists
links
tables
images
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Explain Inline and Block elemnts

A

Block elements cover the whole width of the screen, they can contain block and inline elements.
Inline elemnts only take up the space they need. 2 inline elements are being displayed on the same line. Inline elemnts can only contain other inline elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

was ist der tag für einen Linebreak ?

A

<br></br>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

was ist ein nonbreak space befehl ?

A

Man sagt der website, sie soll unter allen umständen die beiden durch &nbsp verbundenen wörter auf einer zeile anzeigen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

wie macht man eine horizontale linie über einen Tag ?

A

<hr></hr>

aber diese Methode ist eig veraltet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

durch welches Zeichen sind Special characters bestimmt ?

A

&

z.B &copy ist das eingerundete trademark c zeichen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Wie macht man eine abbreviation mit html ? (Wenn man über etwas hovert wird etwas angezeigt)

A

über <abbr>der zu überhovernde text</abbr>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Wie setzt man etwas wie hoch 2 mit html

A

text für hoch und Text

17
Q

quotations tag ?

A

text gibt aus “text”

18
Q

Beschreibe wie die 3 Listtypen aussehen

A

<ul>
<li>Text</li> ungeordnete Liste (Bulletpoints)
<li>Text</li>
</ul>

<ol>
<li>Text</li> geordnete Liste (zahlen 1., 2., 3., )
<li>Text</li>
</ol>

<dl>
<dt>Text</dt> definierte Liste (definition ist eingerückt )
<dd>Definition des Textes</dd>
</dl>

19
Q

Wie kann man durch einen anchor tag an eine andere stelle auf der webseite scrollen ?

A

indem man dem <a>pointer</a>

und dann auf den zu scrollenden punkt entweder ein

<div>Inhalt</div>

oder ein

<div>Inhalt</div>

(geht natürlich auch mit . und klassen

Man kann auch in den href=”./content/index.html#idname”
schreiben um auf eine andere seite an einer bestimmten stelle zu springen

20
Q

wie schafft man es anstatt den aktuellen tab zu verändern, eine seite in einem neuen tab/window über einen tag tag zu bekommen ?

A

<a>text</a>
standartmäßig öffnet sich ein neues window anstatt einem neuen tab, aber das liegt an den Browser einstellungen des users

21
Q

wie ist ein table in html aufgebaut ?

A

= table row
= table header
= table data

22
Q

Wie kann man eine zelle über mehrere Zellen (Reihen und spalten) ausbreiten?

A

geht 2 nach unten

geht 2 nach rechts

23
Q

Nenne ein paar properties die man mit bildern machen kann.

A

src=”bildsource”
alt=”text der angezeigt wird, wenn das bild nicht gefunden wird”
height=”150px”
width=”150px”
srcset=”bild1, bild2, bild3” gibt mehrere bildmöglichkeiten an

24
Q

Wie kann man mit html einen ausklapbaren text machen

A

Events

<p>Come join us</p>

25
Q

Wie spreche ich über den Dom etwas auf der webseite an?

A

Über document.GetElementsById oder Classname

Oder

document.querySelector(‘#example’) um den ersten match zu bekommen oder querySelectorAll um alle zu bekommen

26
Q

Was ist der Unterschied von document.getElementsById und document.querySelectorAll

A

getElementsById gibt ein Live result zurück und querySelector ein statisches

27
Q

Wie macht man einen Color picker ?

A
28
Q

Wie macht man eine ausklappbare combobox ?

A
29
Q

Wie macht man eine datumseingabe ?

A
30
Q

Mit was verifiziert man html inputs

A

mit regex oder required oder wenn man type=”number” macht

31
Q

Wie macht man einen autofocus, wenn man die seite neuläd ?

A

kann nur einmal pro seite verwendet werden