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