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