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