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