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