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