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