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