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