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