HTML BASICS Flashcards

1
Q

Tag for buttons

A

<button></button>

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

What should we put when we want to add an image?

A

<img src=”image_location”/img> (without the “/img”)

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

Tag for text paragraphs

A

<p></p>

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

Tag for tables

A

<table></table>

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

The structure of a web page is built in:

A

HTML

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

You can then style the page with:

A

CSS

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

__________ is used to make pages interactive.

A

JavaScript

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

Complete the line to code a Likebutton.

A

<button>Like</button>

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

Complete to code a Commentbutton.

A

<button>Comment</button>

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

Complete the code for a valid paragraph text saying: “Once upon a time…”

A

<p>Once upon a time...</p>

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

Text:”This product is awesome”
Button: “Buy”

A

<p>This product is awesome</p>

<button>Buy</button>

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

You can use up to _ levels of headings in HTML.

A

6

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

Complete the line to code a level 2 heading: “My New Blog Post”

A

<h2>My New Blog Post</h2>

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

Heading 1: Mexico Guide
Text: Introduction
Heading 2: Food in Mexico
Text: Tacos
Button: Order now

A

<h1>Mexico Guide</h1>

<p>Introduction</p>

<h2>Food in Mexico</h2>

<p>Tacos</p>

<button>Order now</button>

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

HTML tags requiring opening and closing tags.

A

Container tag

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

HTML tags requiring only opening tags.

A

Empty tags