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