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