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