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