/* Using built-in type */
body {
background: yellow;
}
h1 {
background: red;
}
/*Using a class name 'welcome'. a (.)period means class. */
.welcome {
color: blue;
}
/*Using an id name 'link'. # means id. */
#links {
font-size: 75%;
text-align: right;
}
