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