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