Section 1

Preview this deck

The HTML to make a text area is

Front

Star 100%
Star 100%
Star 100%
Star 100%
Star 100%

5.0

1 review

5
1
4
0
3
0
2
0
1
0

Active users

8

All-time users

9

Favorites

0

Last updated

4 years ago

Date created

Mar 14, 2020

Cards (18)

Section 1

(18 cards)

The HTML to make a text area is

Front

<textarea>

Back

What is the correct HTML element for playing audioFiles

Front

<audio>

Back

The correct HTML to insert a background image

Front

<body style="background-image:url(background.gif)">

Back

To make a numbered list is

Front

<ol>

Back

The HTML element for emphasized text is

Front

<em>

Back

How do you make the text bold

Front

font-weight:bold;

Back

The HTML element for line break

Front

<br>

Back

An <iframe> is used to display a web page within a web page.

Front

True

Back

Who makes the web standards?

Front

World Wide Web Consortium

Back

HTML comments start with<!— ends with->

Front

True

Back

The correct HTML to make a drop list is

Front

<select>

Back

How to display border like this top-10 bottom-5 left-20 right-1

Front

Border-width:10px 1px 5px 20px

Back

How do make a list that list it's items with squares

Front

List-style-type:square;

Back

Where is an html document is the correct place to refer to an external style sheet

Front

In the<head> section

Back

To make a billeted list is

Front

<UL>

Back

An HTML Attribute for alternate text is

Front

Alt

Back

What is the correct HTML for referring to an external style sheet

Front

<link rel ="stylesheet"type="text/css" href="my.style.css

Back

You can embed SVG element directly into an HTML page

Front

True

Back