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