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