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