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