HTML Fundamentals/ HTML Content Flashcards

1
Q

How to make a bullet point list?

A

< ul >

< li > li >

< ul >

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

How would you name your website in terms of the browsers window?

A

< head >
< title > < /title >
< head >

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

How can you let web browser know that you are using the HTML language and to begin adding HTML structure and content what opening and closing tags do you write all your HTML code in?

A

< !DOCTYPE html >

< html > < /html >

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

Before you can add content that a browser will display what do you need add?

A

< body >

< /body >

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

How can you add links to other websites and how can you make it so when the URL is clicked a new browser opens up?

A

< a href=https://www.youtube.com/watch?v=riGtbrlCdxs> Link to playlist < /a >

< a href=”https://www.youtube.com/watch?v=riGtbrlCdxs” target=”_blank”> Link to playlist < /a >

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

How do you add images to your web page and what can you add to benefit visually impaired users?

A

<img></img>

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

How do you add line breaks so that it appears on a web page?

A

< br/ >

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