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