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