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