⚠️ Glitch project hosting shuts down on 8th July 2025 so you won't be able to remix this project anymore – you are welcome to use the source code if you'd like to deploy it somewhere else!
This is a website you can remix to make your own. Open the Preview pane at the bottom of the Glitch editor to see your changes appear live. On the left you'll find the files that make up your site, including HTML, JavaScript, and CSS. You can upload images in Assets. Go ahead and edit your remix! 🪄
Last updated: 9 Jan 2024
Your website will have a glitch.me
address you can share with anyone – grab it in the preview, by clicking the three little dots and choosing Copy Link.
You can also point a domain you own at your Glitch website using Fastly:
- Get your Glitch website ready to publish 🎏
- Get yourself a domain – Domainr is a great place to find one 🪧
- Use free TLS from Fastly to point the domain at your site! 🚀
📣 Wondering why you should have your own domain? There are lots of good reasons!
← README.md
: That's this file, where you can tell people what your cool website does and how you built it.
← index.html
: This is the main web page for your site. The HTML defines the structure and content of the page using elements. You'll see references in the HTML to the JS and CSS files. Try clicking the image in the center of the page!
← style.css
: CSS files add styling rules to your content. The CSS applies styles to the elements in your HTML page. The style rules also make the image move when you click it.
← script.js
: If you're feeling fancy you can add interactivity to your site with JavaScript. The code in the JavaScript file runs when the page loads.
← package.json
: NPM packages your website uses during development.
← vite.config.js
: Your site uses Vite to build and serve it to users.
Open each file and check out the comments (in gray) for more info.
Add these meta tags for SEO and social sharing between your page <head></head>
tags, changing the values for your site:
<link rel="canonical" href="https://your-new-website.glitch.me/" />
<meta name="description" content="A simple website, built with Glitch. Remix it to get your own."/>
<meta name="robots" content="index,follow" />
<meta property="og:title" content="Your new website!" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://your-new-website.glitch.me/" />
<meta property="og:description" content="A simple website, built with Glitch. Remix it to get your own."/>
<meta property="og:image" content="https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2Fhello-website-social.png?v=1616712748147"/>
<meta name="twitter:card" content="summary" />
Glitch is a friendly community where millions of people come together to build web apps and websites.
- Need more help? Check out our Help Center for answers to any common questions.
- Ready to make it official? Become a paid Glitch member to boost your app with private sharing, more storage and memory, domains and more.