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