HTML Basics 1

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/8

flashcard set

Earn XP

Description and Tags

HTML Basics 1

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

9 Terms

1
New cards

What's wrong with this webpage?

</h1>3D Printers</h1> <p>Easy to get started</p> <p>Fun to play with</p> <p>Unlimited creativity</p>

There is no opening <h1> tag

2
New cards

What's wrong with these emphasis tags?

</em>Purple Haze</em>

There’s a forward slash (/) sign in the opening tag

3
New cards

Code the opening tag that defines the text ‘29.99’ as important.

<h1>Dr. Amp's Gold Shovels</h1>

<p> Order now - only $29.99</strong></p>

<h1>Dr. Amp's Gold Shovels</h1>
<p> Order now - only <strong>$29.99</strong></p>

4
New cards

Why is the line break tag an empty tag?

Because it has no closing tag

5
New cards

Display Accept on the button by coding between the opening and closing tags.

<h4>Terms and Conditions</h4> <p>By clicking accept, you agree to helping a friend this weekend.</p> <button></button> <button>No way!</button>

<h4>Terms and Conditions</h4>

<p>By clicking accept, you agree to helping a friend this weekend.</p>

<button>Accept</button>

<button>No way!</button>

6
New cards
<button>Add to Cart</button>

Is there anything wrong with this code?

Nah

7
New cards

Place the last button below the other by coding <br>.

<h4>Welcome to Mimo</h4>
<button>Sign Up</button>

<button>Login</button>

<h4>Welcome to Mimo</h4>
<button>Sign Up</button>
<br>
<button>Login</button>

8
New cards

Place the button displaying Copy to Clipboard next to the other button on the webpage.

index.html

<h4>Joke of the Month</h4>
<p>I made a pencil with two erasers. It was pointless.</p>
<button>Vote</button>

<h4>Joke of the Month</h4>

<p>I made a pencil with two erasers. It was pointless.</p>

<button>Vote</button>

<button>Copy to Clipboard</button>

9
New cards