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