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