1/8
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
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
What's wrong with these emphasis tags?
</em>Purple Haze</em>
There’s a forward slash (/) sign in the opening tag
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>
Why is the line break tag an empty tag?
Because it has no closing tag
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>
<button>Add to Cart</button>
Is there anything wrong with this code?
Nah
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>
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>