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