Hello! On this page I will demonstrate the basics of HTML and CSS.

Below is a table of examples I have added to my page: A table is created using table, th, tr, and td tags. This table uses borders and the "border-collapse: collapse;" style command to eliminate double border walls.

Name Item
Links to items on this page
  1. CSS
  2. cat
  3. ol
  4. ul
  5. form
  6. datalist
This page uses an external Cascading Style Sheets file named mystyle.ccs link rel="stylesheet" type="text/css" href= "mystyle.css"
This page also uses Bootstrap 4, an external styling tool link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"
Cat image from wikipedia/commons
Bart McEndree image from local a jpg file
Ordered list using ol and li tags
		<ol>
		       <li> First item </li>
		       <li> Second item </li>
		       <li> Third item </li>
		</ol>			    
		
  1. First item
  2. Second item
  3. Third item
Unordered list using ul and li tags
  • an item
  • another item
  • and another item
Form with name fields and a button using form, label, input, and button tags








datalist
Back to the index page