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