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