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