If you are not redirected automatically, click here.

--- # Simple Canva Link Redirect (GitHub Pages) Short explanation: a tiny static site (single `index.html`) that immediately redirects visitors to your long Canva portfolio link. Host it on GitHub Pages (free) so the GitHub URL becomes your short link. ## Files - `index.html` — performs the redirect (meta refresh + JS fallback + clickable link). ## How to deploy (quick steps) 1. Create a GitHub repository (e.g. `canva-redirect`). 2. Add `index.html` to the repository root and commit. 3. Go to repository **Settings > Pages** (or **Settings > Code and automation > Pages** depending on UI). 4. Under "Source" choose branch `main` (or `gh-pages`) and folder `/ (root)`. Save. 5. GitHub will give you a Pages URL like `https://.github.io//` — that is your short link. Share it instead of the long Canva URL. ## Optional improvements - Use a custom domain (e.g. `portfolio.mydomain.com`) via GitHub Pages if you want a nicer short link. - Use Netlify or Vercel for shorter domain options and to set a proper 301 status with redirect rules. - If you prefer a 301 server-side redirect and control, use a tiny Express app and deploy to Vercel or Railway. ## Express example (if you want server redirect) ```js // server.js const express = require('express'); const app = express(); const PORT = process.env.PORT || 3000; const TARGET = 'https://www.canva.com/design/DAGNsDrbwc0/N32N6QiYzs8uHaQZOr-EBw/view?utm_content=DAGNsDrbwc0&utm_campaign=designshare&utm_medium=link2&utm_source=uniquelinks&utlId=h17276b7dfd'; app.get('/', (req, res) => { // 301 Moved Permanently res.redirect(301, TARGET); }); app.listen(PORT, () => console.log(`Listening on ${PORT}`)); ``` Deploy the Express app to Vercel (as a serverless function) or Railway/Heroku and your repo root URL becomes the short link. --- If you'd like, I can also: - Generate a ready-to-upload ZIP containing `index.html` and `README.md`. - Create a full `server.js` + `package.json` example for Express. - Show exact steps with screenshots for enabling GitHub Pages.