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