Files
30-seconds-of-code/blog_posts/custom-file-download-names.md
Isabelle Viktoria Maciohsek 9482b077ec Bake dates into articles
2021-06-13 19:52:48 +03:00

18 lines
918 B
Markdown

---
title: "Tip: Customize the names of downloadable files"
type: tip
tags: webdev,html,browser
authors: chalarangelo
cover: blog_images/hard-disk.jpg
excerpt: Learn what HTML5 attribute you can use to customize the names of your downloadable files with this quick tip.
firstSeen: 2021-01-11T11:00:00+02:00
lastUpdated: 2021-06-12T19:30:41+03:00
---
HTML5 introduced a variety of convenient features that many of us use every day. As downloadable links aren't something I work with very often, I recently found out that you can use the `download` attribute on an `<a>` element for much more than just making it trigger a download. In fact, you can pass it a string value that will act as the name of the downloadable file, effectively allowing you to customize its name:
```html
<!-- The downloaded file will be named 'June-2020.csv' -->
<a href="/data/2020/06/report.csv" download="June-2020.csv">June 2020</a>
```