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