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