Case Styles Explained
| Style | Example | Common Use |
|---|---|---|
| UPPERCASE | THE QUICK BROWN FOX | Headers, abbreviations, emphasis |
| lowercase | the quick brown fox | URLs, variable naming |
| Title Case | The Quick Brown Fox | Headlines, book titles |
| Sentence case | The quick brown fox | Body text, paragraphs |
| camelCase | theQuickBrownFox | JavaScript, Java variables |
| PascalCase | TheQuickBrownFox | Class names, C# methods |
| snake_case | the_quick_brown_fox | Python, Ruby, database columns |
| kebab-case | the-quick-brown-fox | CSS classes, URLs, HTML attributes |
Title Case Rules
Capitalize all words except short articles, conjunctions, and prepositions (a, an, the, and, but, or, in, on, at, to, for, of, with). Always capitalize the first and last words. Different style guides (AP, APA, Chicago, MLA) have slightly different title case rules for prepositions over 4 letters.