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