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