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