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