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