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