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