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