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