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