# Want to Download something?
On Web Browsers, these files aren't displayed as RAW, but as highlighted HTML.
If you want to just have the raw files, use either cURL or Wget:
```bash
curl https://stuff.applboy.dev/codeView/files/helloWorld.c -o helloWorld.c
# or wget https://stuff.applboy.dev/codeView/files/helloWorld.c -O helloWorld.c
```
Use the terminal, he's your fren. Windows or not, curl should be enough.
Or, idk. Use `lynx`, `w3m` and `elinks`, they show it as "plain" text.
```bash
elinks --dump https://stuff.applboy.dev/codeView/files/helloWorld.c > helloWorld.c
# w3m -dump https://stuff.applboy.dev/codeView/files/helloWorld.c > helloWorld.c
# lynx --dump https://stuff.applboy.dev/codeView/files/helloWorld.c > helloWorld.c
```
Have fun!