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