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