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