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