Shortcuts
Add CSS file to HTML
<html>
<head>
<link rel="stylesheet" href="css/styles.css" />
</head>
</html>
Block element to inline
h1 {
display: inline;
}
- Block element has the full width but inline does not have the full width.
- Block supports height in CSS but inline doesn’t have such an attribute.
Selector by id
#id-element {
}
Import font
@import url('https://fonts.googleapis.com/css?family=Germania+One');
/* fonts.google.com */