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