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