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