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