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