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