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