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