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