Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

name: date: classperiod: part 1 1:what does html stand for? a. hyper te…

Question

name: date: classperiod: part 1 1:what does html stand for? a. hyper text markup language b. home tool markup language c. hyperlinks and text markup language 2:who is making the web standards? a. google b. microsoft c. the world wide web consortium d. mozilla 3:choose the correct html element for the largest heading: a. <h1> b. <head> c. <heading> d. <h6> 4:what is the correct html element for inserting a line break? a. <break> b. <br> c. <lb> 5:what is the correct html for adding a background color? a. <body style=\background - color:yellow;\> b. <body bg=\yellow\> c. <background>yellow</background> 6:choose the correct html element to define important text a. <b> b. <i> c. <strong> d. <important> 7:choose the correct html element to define emphasized text a. <italic> b. <em> c. <i> 8:what is the correct html for creating a hyperlink? a. <a url=\http://www.w3schools.com\>w3schools.com</a> b. <a>http://www.w3schools.com</a> c. <a name=\http://www.w3schools.com\>w3schools.com</a> d. <a href=\http://www.w3schools.com\>w3schools</a> 9:which character is used to indicate an end tag? a. / b. ^ c. * d. < 10: how can you open a link in a new tab/browser window? a. <a href=\url\ target=
ew\> b. <a href=\url\ target=\_blank\> c. <a hrefs=\url\ new> 11:which of these elements are all <table> elements? a. <thead><body><tr> b. <table><tr><tt> c. <table><head><tfoot> d. <table><tr><td>

Explanation:

Brief Explanations
  1. HTML is the abbreviation for Hyper Text Markup Language.
  2. The World Wide Web Consortium (W3C) is responsible for making Web standards.
  3. In HTML, <h1> is the element for the largest heading.
  4. The correct HTML element for inserting a line break is <br>.
  5. The proper way to add a background color in HTML is <body style="background - color:yellow;">.
  6. The <strong> element is used to define important text.
  7. The <em> element is used to define emphasized text.
  8. The correct HTML for creating a hyperlink is <a href="http://www.w3schools.com">W3Schools</a>.
  9. The / character is used to indicate an end tag (e.g., </tag>).
  10. To open a link in a new tab/browser window, use <a href="url" target="_blank">.
  11. In HTML tables, the correct structure among the options is <table><tr><td> (where <tr> is a table row and <td> is a table data cell).

Answer:

  1. A. Hyper Text Markup Language
  2. C. The World Wide Web Consortium
  3. A. <h1>
  4. B. <br>
  5. A. <body style="background - color:yellow;">
  6. C. <strong>
  7. B. <em>
  8. D. <a href="http://www.w3schools.com">W3Schools</a>
  9. A. /
  10. B. <a href="url" target="_blank">
  11. D. <table><tr><td>