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