33 lines
420 B
Markdown
33 lines
420 B
Markdown
---
|
|
title: HTML/CSS
|
|
category: HTML
|
|
---
|
|
|
|
### CSS - Selectors
|
|
|
|
.class {
|
|
}
|
|
|
|
### CSS - Font styling
|
|
|
|
font-family: Arial;
|
|
font-size: 12pt;
|
|
line-height: 150%;
|
|
color: #aa3322;
|
|
|
|
### CSS - Font styling
|
|
|
|
// Bold
|
|
font-weight: bold;
|
|
font-weight: normal;
|
|
|
|
// Italic
|
|
font-style: italic;
|
|
font-style: normal;
|
|
|
|
// Underline
|
|
text-decoration: underline;
|
|
text-decoration: none;
|
|
|
|
|