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