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