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