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