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