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