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