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