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