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