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