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