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