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