The Essential Guide to HTML5

(Greg DeLong) #1

CHAPTER 8


Code Explanation


form { Style specified for all form elements. There is
just one in this document.


color: blue; Color of text set to blue, one of the 16 colors
known by name


font-family: Georgia, "Times New
Roman", Times, serif;


Set up the fonts to try to use

font-size:16px; Set size of characters


} Close style


input { Style specified for all input elements. There is
just one.


text-align:right; Make the text align to the right, appropriate
for numbers


font:inherit; Inherit any font information from parent,
namely form


color:inherit; Inherit color of text from parent, namely form


} Close style


Close style element