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