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