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