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