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