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