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