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