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