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