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