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