scottleduc on October 15, 2009
Basic HTML Web Development Exercise
Terms | Definitions |
|---|---|
<html></html> | Defines an HTML document |
<head></head> | Defines information about the document |
<body></body> | Defines the document's body |
<h1></h1> | Defines largest HTML heading |
<h2></h2> | Defines second largest HTML heading |
<h3></h3> | Defines third largest HTML heading |
<p></p> | Defines a paragraph |
<ul></ul> | Defines an unordered list |
<ol></ol> | Defines an ordered list |
<li></li> | Defines a list item |
<a href="url">Link text</a> | Defines HTML link |
<br /> | Defines a line break |
<style></style> | Defines the style section in the head section |
<table></table> | Defines a table |
<tr></tr> | Defines a table row |
<td></td> | Defines table data |
<img src="url" alt="some_text"/> | Defines image display |
<form></form> | Defines a form |
<input type="text" /> | Defines a one-line input field in a form |
<input type="password" /> | Defines a password field in a form |
<input type="radio" /> | Defines a radio button in a form |
<input type="checkbox" /> | Defines a checkbox in a form |
<input type="submit" /> | Defines a submit button in a form |