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