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