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