Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 421 Bytes

html-css.md

File metadata and controls

32 lines (22 loc) · 421 Bytes
title layout
HTML/CSS
default

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;