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