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