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