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