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