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