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