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