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