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