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