<style>
.red-text {
color: red;
}
p {
font-size: 16px;
font-family: monospace;
}
<link href="https://fonts.googleapis.com/css?family=Lobster">
h2 {
font-family: Lobster;
}
</style>
<head>
...
<link href="https://fonts.googleapis.com/css?family=Lobster">
...
<head>
<style>
.red-text {
color: red;
}
p {
font-size: 16px;
font-family: monospace;
}
h2 {
font-family: Lobster;
}
</style>
margin: 0 auto;
var result = true;
<div class="white">
</div>
<div class="black">
<span>Simple Text</span>
</div>
.white{
background: white;
}
.black{
background: url(../simplehuinya.png), black;
background-position: top center, 100% 100%;
background-repeat: no-repeat;
background-size: 10%, 100%;
}
$('input[type="radio"]').click( function(){
if ( this.checked ){
$(this).attr('checked', false);
}
else{
$(this).attr('checked', true);
}
});