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