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