font variant in css code example
Example: css font-variant
/* Change p { to whatever you want to have small capitalized letters. */
p {
font-variant: small-caps;
}
/* When the program is ran, words should be in small capitalized letters. If there is a <p> element. */