MIS html quiz UNH Questions Solved
100% Correct
page title tag
The title is shown in the browser's title bar
- in another word, how you want to name your website
<head><title>HTML Tutorial</title></head>
tables
A table in HTML consists of table cells inside rows and columns
- table is declared using <table> and a </table> tag
- each table cell is defined by a <td> and a </td> tag
- each table row starts with a <tr> and ends with a </tr> tag
- table header is defined by <th>Create Table in HTML
unordered lists
starts with the <ul> tag. Each list item starts with the <li> tag. The list items will
be marked with bullets
types of html attributes
- href attribute<a href="https://google.com">This is google</a>
- src attribute<img src="img_girl.jpeg">
- width and height attribute<img src="img_girl.jpeg" width="500" height="600">
- alt Attribute<img src="img_girl.jpg" alt="Girl with a jacket">
- lang attribute<html lang="en">
- style attribute<p style="color:red;">red paragraph.</p>
- always quote attributes
- always use lowercase attributes
w3space
where you publish your website
Web Server
100% Correct
page title tag
The title is shown in the browser's title bar
- in another word, how you want to name your website
<head><title>HTML Tutorial</title></head>
tables
A table in HTML consists of table cells inside rows and columns
- table is declared using <table> and a </table> tag
- each table cell is defined by a <td> and a </td> tag
- each table row starts with a <tr> and ends with a </tr> tag
- table header is defined by <th>Create Table in HTML
unordered lists
starts with the <ul> tag. Each list item starts with the <li> tag. The list items will
be marked with bullets
types of html attributes
- href attribute<a href="https://google.com">This is google</a>
- src attribute<img src="img_girl.jpeg">
- width and height attribute<img src="img_girl.jpeg" width="500" height="600">
- alt Attribute<img src="img_girl.jpg" alt="Girl with a jacket">
- lang attribute<html lang="en">
- style attribute<p style="color:red;">red paragraph.</p>
- always quote attributes
- always use lowercase attributes
w3space
where you publish your website
Web Server