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