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