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