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