HTML Flashcards
1
Q
<! Doctype html>
A
.
2
Q
Command pallet shortcut
A
ctrl + shift+ p
3
Q
format document shortcut
A
shift + Alt + f Shortcut
4
Q
Unordered list
A
<ul>
<li></li>
</ul>
5
Q
link
A
<a href=“www.1.com”></a>
6
Q
image
A
<img src=“sun.jpg” alt=“a sun behind a tree”>
7
Q
comment
A
<!-- we write our comments here -->
8
Q
comment shortcut
A
CTRL + /
9
Q
which kind of element is <div></div>
A
Block element
10
Q
which kind of element is <span></span>
A
inline element
11
Q
A
the superscript elemen X²
12
Q
A
The subscript element
oposit of X²
13
Q
Emment=> Child: >
A
main>h1>bold=
<main>
<h1>
<bold></bold>
</h1>
</main>
14
Q
Emment=> Sibiling: +
A
h1+h2+h3=
<h1></h1>
<h2></h2>
<h3></h3>
15
Q
Emment=> Multiplication: *
A
ul>li*3 = <ul>
<li></li>
<li></li>
<li></li>
</ul>