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