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