Jump to content

Direct Download from Website

Wictorian

How can I add direct download to my website through something like google drive?

Link to comment
Share on other sites

Link to post
Share on other sites

You'll have to give more details, explain what you want more clearly.

 

If you want to put a link to something on your website you can add a html code to your page 

<a href="https://link-to-your-download" target="_blank" alt="Descriptive Text">Text user clicks on to download</a>

target="_blank" - is optional, tells the browser to open in new window or tab instead of same page
alt="Descriptive Text"  - is optional, what's shown if user hovers mouse pointer over link, useful when using pictures instead of text 

 

Link to comment
Share on other sites

Link to post
Share on other sites

14 minutes ago, mariushm said:

You'll have to give more details, explain what you want more clearly.

 

If you want to put a link to something on your website you can add a html code to your page 


<a href="https://link-to-your-download" target="_blank" alt="Descriptive Text">Text user clicks on to download</a>

target="_blank" - is optional, tells the browser to open in new window or tab instead of same page
alt="Descriptive Text"  - is optional, what's shown if user hovers mouse pointer over link, useful when using pictures instead of text 

 

for example say they need to download a pdf file. If I upload it to google drive the need to go to drive and right click on it and download it. How can I make them just directly download it upon clicking?

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×