···33[](https://hex.pm/packages/fonts)
44[](https://hexdocs.pm/fonts/)
5566-```sh
77-gleam add fonts@1
88-```
99-```gleam
1010-import fonts
1161212-pub fn main() -> Nil {
1313- // TODO: An example of the project in use
1414-}
1515-```
167178Further documentation can be found at <https://hexdocs.pm/fonts>.
1891910## Development
20112112```sh
1313+curl https://raw.githubusercontent.com/knadh/oat/refs/heads/gh-pages/oat.min.css -opriv/oat.min.css # Download OatUI css
1414+curl https://raw.githubusercontent.com/knadh/oat/refs/heads/gh-pages/oat.min.js -opriv/oat.min.js # Download OatUI js
2215gleam run # Run the project
2316gleam test # Run the tests
2417```
+1
gleam.toml
···2020gleam_http = ">= 4.3.0 and < 5.0.0"
2121gleam_erlang = ">= 1.3.0 and < 2.0.0"
2222woof = ">= 1.6.0 and < 2.0.0"
2323+gleam_httpc = ">= 5.0.0 and < 6.0.0"
23242425[dev_dependencies]
2526gleeunit = ">= 1.0.0 and < 2.0.0"
+2
manifest.toml
···1010 { name = "gleam_crypto", version = "1.6.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_crypto", source = "hex", outer_checksum = "2DE9E4EF53CF6FEE049D4F765731F7178F7A11AEFAE00EEE63BF7536B354AD3F" },
1111 { name = "gleam_erlang", version = "1.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "1124AD3AA21143E5AF0FC5CF3D9529F6DB8CA03E43A55711B60B6B7B3874375C" },
1212 { name = "gleam_http", version = "4.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_http", source = "hex", outer_checksum = "82EA6A717C842456188C190AFB372665EA56CE13D8559BF3B1DD9E40F619EE0C" },
1313+ { name = "gleam_httpc", version = "5.0.0", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_http", "gleam_stdlib"], otp_app = "gleam_httpc", source = "hex", outer_checksum = "C545172618D07811494E97AAA4A0FB34DA6F6D0061FDC8041C2F8E3BE2B2E48F" },
1314 { name = "gleam_otp", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_stdlib"], otp_app = "gleam_otp", source = "hex", outer_checksum = "BA6A294E295E428EC1562DC1C11EA7530DCB981E8359134BEABC8493B7B2258E" },
1415 { name = "gleam_stdlib", version = "1.0.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "960090C2FB391784BB34267B099DC9315CC1B1F6013E7415BC763CEF1905D7D3" },
1516 { name = "gleam_yielder", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_yielder", source = "hex", outer_checksum = "8E4E4ECFA7982859F430C57F549200C7749823C106759F4A19A78AEA6687717A" },
···3233ewe = { version = ">= 3.0.8 and < 4.0.0" }
3334gleam_erlang = { version = ">= 1.3.0 and < 2.0.0" }
3435gleam_http = { version = ">= 4.3.0 and < 5.0.0" }
3636+gleam_httpc = { version = ">= 5.0.0 and < 6.0.0" }
3537gleam_stdlib = { version = ">= 1.0.0 and < 2.0.0" }
3638gleeunit = { version = ">= 1.0.0 and < 2.0.0" }
3739hackney = { version = ">= 4.0.0 and < 5.0.0" }