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