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