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