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