CSS fonts π
CSS font families tutorial example explained
#CSS #font #fonts
body{
background-color:#111111;
}
h1{
color: #FFFFFF;
font-family: βPress Start 2Pβ, βconsolasβ, sans-serif;
}
p{
color: #00FF73;
font-family: βconsolasβ, sans-serif;
font-style: italic;
font-weight: bold;
text-decoration: cyan dotted underline;
font-size: 18px;
}