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