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