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