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