Styling

font-family


color


text-align


font-size


background-color



Formatting

strong (importance)


em (emphasize)


b (attention)


del(strikeout)


sub (subscript)



Links

text-decoration:none;



Images

alt="AlternateName"



Tables

Row with two headers



caption

Add a table caption that says " Names and Points".


Using Colspan



Lists

< ul >


< ol >

Finish the HTML code to make an ordered list.
  1. Coffee
  2. Tea
  3. Milk

style="list-style-type:square;"

Use CSS to display squares instead of bullets.
  • Coffee
  • Tea
  • Milk

type="A"

Use the correct HTML attribute to display letters (uppercase ABC) instead of numbers.
  1. Coffee
  2. Tea
  3. Milk

type="i"


Use the correct HTML attribute to display i instead of numbers.
  1. Coffee
  2. Tea
  3. Milk

Description list (< dl >)



Forms

input type="button" value="OK"


input type="radio" name="fav_language" (Radio button)


HTML form attributes (action="/action_page.php")


HTML form elements (< select name="cars"> < option value="">< /option> < /select>)


HTML form elements (checkbox) (< input type="checkbox")



HTML form elements (date)(< input type="date" min="1990-01-01")



HTML form elements (e-mail)(< input type="email" placeholder="")




Block-Inline

Here are the inline elements in HTML:



Here are the block-level elements in HTML:



Here are some examples with div and span