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