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