WebSite X5Help Center

 
Christopher A.
Christopher A.
User

Download Excel file  en

Autor: Christopher A.
Visitado 922, Followers 1, Compartido 0  

In my website I have a section for students to download course materials. PDFs are easy but I also wish to add a facility for them to download an EXcel file, not view it or use it online but actually download it to their hard disk. Is there afacility I can use for this? Putting the Excel file as a link is not working.

Publicado en
4 RESPUESTAS
John S.
John S.
User

You can have an icon for a xls file and then it could be something like this :

<a href="/yourfilefordownload/excelfile.xls" download>
<img src="/yourclickableicon/excelimageimage.jpg" alt="Excelfile" width="104" height="142">
</a>

You put this in a html object and then you will have an iconm  shown that when clicked will start the download.

Leer más
Publicado en de John S.
John S.
John S.
User

And just with clickable text "Excelfile1" shown

<a href="/yourfilefordownload/excelfile.xls" download>Excelfile1</a>

Leer más
Publicado en de John S.