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