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