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