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