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