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