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