This is a single-file developer portfolio Nor.html. Below are quick publish options so you can make the site live right away.
- Create a Git repository in this folder and push to GitHub (replace
<your-repo-url>):
git init
git add .
git commit -m "Initial: Nor portfolio"
git branch -M main
git remote add origin <your-repo-url>
git push -u origin main-
The included GitHub Action will automatically deploy the repository root to the
gh-pagesbranch on every push tomain. After the first successful run, enable GitHub Pages for the repo and set the source to thegh-pagesbranch (or check the repository's Pages settings — GitHub may already configure it). -
Page URL will be:
https://<your-username>.github.io/<repo-name>/(or see Pages settings).
- Install Vercel CLI (
npm i -g vercel) or use the Vercel web dashboard. - From this folder run:
vercel --prodVercel will guide you through deployment and give a live URL.
- Install Netlify CLI:
npm i -g netlify-cli - Run:
netlify deploy --prod --dir=.Follow the prompts to create or link a site.
Run a local static server (Python 3):
python -m http.server 8080
# then open http://localhost:8080/Nor.html- Replace placeholder demo/repo links inside
Nor.htmlwith real URLs. - To receive contact form submissions via FormSubmit, update the
data-emailattribute on the contact form to your email.
If you want, I can create the remote GitHub repo for you (requires gh CLI authentication) or proceed with Vercel/Netlify deploy commands locally. Which publish method would you like me to prepare next?