CSS Selectors
Using basic site wide selectors to style site wide elements
by Alan Jones
HTML
<p>
Lorem ipsum dolor sit amet, <span>consectetur</span> adipiscing elit. Praesent vestibulum nunc ante, in consectetur felis ultricies in. Curabitur ullamcorper gravida mollis.
</p>
CSS
@import 'https://fonts.googleapis.com/css?family=Bangers|Playball';
p {
font-family: 'Playball', cursive;
background-color: #400;
padding: 20px 3%;
font-size:1.2em;
color: rgb(241,241,241);
}
p span {
font-family: 'Bangers', cursive; font-size:1.8em;
}