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