Use on the webTotal Use [ 5922 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/171ee71c5f5fa8bf20df945556208cef?family=PR-Uncial+Creepy" 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/171ee71c5f5fa8bf20df945556208cef?family=PR-Uncial+Creepy);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "PR-Uncial Creepy";
src: url("https://db.onlinewebfonts.com/t/171ee71c5f5fa8bf20df945556208cef.eot");
src: url("https://db.onlinewebfonts.com/t/171ee71c5f5fa8bf20df945556208cef.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/171ee71c5f5fa8bf20df945556208cef.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/171ee71c5f5fa8bf20df945556208cef.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/171ee71c5f5fa8bf20df945556208cef.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/171ee71c5f5fa8bf20df945556208cef.svg#PR-Uncial Creepy")format("svg");
}
2CSS rules to specify fonts
font-family: "PR-Uncial Creepy";