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