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