Q1 HTML Flashcards

1
Q

HTML

A

HyperText Markup Language

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

how to start html

A

<!DOCTYPE html>

<html>

<head>
<title>\_\_\_\_\_</title>

</head>
<body>

</body>
</html>

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

how to start a heading, which one is the biggest which one is the smallest?

A

<h1></h1>

  • biggest <h6></h6> - smallest
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

normal text, also known as paragraph

A

<p>
</p>

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

line break

A

<br></br>

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

this attribute means list item, do you use it to start listing?

A

<li>, no should be used as
<ol>
<li>hi</li>
</ol>
</li>

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

ordered list, numbered list

A

<ol></ol>

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

unordered list, bulleted list

A

<ul></ul>

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

how to add pic

A

<img src= ‘paldo.jpg’>

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

to decrease or increase the size the pic

A

<img src= ‘paldo.jpg’ width= ‘250’ height= ‘250’>

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

to create a link to another website

A

<a href= ‘html’>title</a>

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

anchor

A

<a></a>

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

table head

A

<th></th>

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

<img ___ =>

A

src

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

to put data inside the table

A

<td></td>

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

href

A

hyperlink reference

17
Q

alt

A

alternative text

18
Q

how to put a photo and click it to go to another link

A

<a href= ‘paldo.html’><img src= ‘paldo.jpg>

19
Q

how to put username box

A

<input type= ‘text’ name=‘user’ placeholder=‘Username’>

20
Q

how to put an empty box

A

<input type= ‘text’ name=‘user’ placeholder=‘ ’ required text= 10>

21
Q

how to make a box that is disabled

A

<input type= ‘text’ name=‘user’ value=‘paldo’ disabled>

22
Q

how to put a name automatically but can’t be erased

A

<input type= ‘text’ name=‘user’ value=‘paldo’>

23
Q

how to make a text read only

A

<input type= ‘text’ name=‘user’ value=‘paldo’ readonly>

24
Q

how to make a password box

A

<input type= ‘pass’ name=‘password’ placeholder=‘Password’>

25
Q

how to make a circle that you can select ( also for gender )

A

<input type= ‘radio’ name=‘gender’ value= ‘Male’ />Male ( can also be for female )

26
Q

how to make a checkbox ( square )

A

<input type= ‘checkbox’ name=‘sub’ value=‘eng’>eng

27
Q

how to start a select box

A

<select name=‘text’>

28
Q

how to make options

A

<option value=‘text’>text</option>

29
Q

how to make a submit box

A

<input type=‘submit’ value=‘save’>

30
Q

what element is to make a text for a normal box

A

text

31
Q

what element is to make a password box

A

password

32
Q

what element is to make a circle to select

A

radio

33
Q

what element is to make a checkbox

A

checkbox

34
Q

what element is to make a submit box

A

submit