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