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