hello.

i want to get a free web space where i can upload my own created designs.

i went in with some of the sites but they provide their own templet.


so, please help me by giving me some names of such sites.

thanks !!

Dani AI

Generated

wanted a free place to upload original designs without being forced into a site-builder template. and pointed toward free hosts, which is fine — but pick the right type of service for your needs. Two common paths:

  • Static hosting (HTML/CSS/JS only) gives complete control over markup and styles and does not force templates. Good for portfolios and front-end demos. See GitHub Pages (https://docs.github.com/en/pages) or Netlify (https://www.netlify.com) for zero-cost static deployment with custom domains and free SSL.
  • Dynamic hosting (PHP/MySQL) is needed only if you want server-side code or databases. Free PHP hosts exist but frequently impose limits, add ads, or suspend accounts for inactivity. If you go free, verify PHP version, database size, FTP/SFTP or SSH access, bandwidth caps, and backup policy.

A simple static workflow (local -> deploy):

git init
git add .
git commit -m "Initial site"
git remote add origin git@github.com:username/repo.git
git push -u origin main

Notes and cautions: read the provider terms, confirm custom-domain and HTTPS support (use LetsEncrypt for free SSL: https://letsencrypt.org), keep local backups, and be prepared to move to low-cost shared hosting when the site needs more storage, databases, or reliable uptime. Free hosting is great for learning and portfolios; avoid it for client work or business-critical sites.

Recommended Answers

All 2 Replies

hello.

i want to get a free web space where i can upload my own created designs.

i went in with some of the sites but they provide their own templet.


so, please help me by giving me some names of such sites.

thanks !!

Ever tried finding a free hosting provider here ?
For PHP and MySQL, I always use this one :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.