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