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