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