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