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