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