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