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