Use on the webTotal Use [ 4579 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/f5319274c652565c760d289c681e771b?family=Surreal+Roaring+20s" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/f5319274c652565c760d289c681e771b?family=Surreal+Roaring+20s);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Surreal Roaring 20s";
src: url("https://db.onlinewebfonts.com/t/f5319274c652565c760d289c681e771b.eot");
src: url("https://db.onlinewebfonts.com/t/f5319274c652565c760d289c681e771b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f5319274c652565c760d289c681e771b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f5319274c652565c760d289c681e771b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f5319274c652565c760d289c681e771b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f5319274c652565c760d289c681e771b.svg#Surreal Roaring 20s")format("svg");
}
2CSS rules to specify fonts
font-family: "Surreal Roaring 20s";