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