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