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