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