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