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