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