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