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