14 lines
238 B
CSS
14 lines
238 B
CSS
@font-face {
|
|
font-family: myFont; /* set name */
|
|
src: url(AlexBrush-Regular.ttf); /* url of the font */
|
|
}
|
|
|
|
body {
|
|
background-color: #FFBDD6;
|
|
}
|
|
|
|
.katzenhasser22 {
|
|
font-family: myFont;
|
|
text-align: center;
|
|
color: white;
|
|
} |