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