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