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