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