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