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