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