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