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