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