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