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