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