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