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