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. */
ayaan