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