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