teecraft-3d-studio / hosting.html
sa2647029's picture
Build my website free domain and hosting
55de6db verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Free Hosting | TeeCraft 3D Studio</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-20">
<div class="max-w-4xl mx-auto">
<h1 class="text-3xl font-bold text-gray-800 mb-8 text-center">Free Hosting & Domain Options</h1>
<div class="bg-white rounded-xl shadow-md p-8 mb-12">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Get Your Website Online for Free</h2>
<p class="text-gray-600 mb-6">
Launch your TeeCraft 3D Studio website with these free hosting and domain options. These services
are perfect for getting started without upfront costs.
</p>
<div class="grid md:grid-cols-2 gap-8">
<!-- Option 1 -->
<div class="bg-blue-50 p-6 rounded-lg">
<div class="flex items-center mb-4">
<img src="https://github.githubassets.com/favicons/favicon.png" alt="GitHub" class="h-8 w-8 mr-3">
<h3 class="text-xl font-semibold">GitHub Pages</h3>
</div>
<p class="text-gray-700 mb-4">
Host your static website for free with GitHub Pages. You'll get a free subdomain (username.github.io).
</p>
<ul class="space-y-2 mb-6">
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-2 mt-1"></i>
<span>Free hosting with no limits</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-2 mt-1"></i>
<span>Automatic deployment from GitHub</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-2 mt-1"></i>
<span>Supports custom domains</span>
</li>
</ul>
<a href="https://pages.github.com/" target="_blank" class="inline-block bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-lg font-medium transition duration-300">
Learn More
</a>
</div>
<!-- Option 2 -->
<div class="bg-green-50 p-6 rounded-lg">
<div class="flex items-center mb-4">
<img src="https://www.freenom.com/favicon.ico" alt="Freenom" class="h-8 w-8 mr-3">
<h3 class="text-xl font-semibold">Freenom Domains</h3>
</div>
<p class="text-gray-700 mb-4">
Get a free domain name (.tk, .ml, .ga, .cf, .gq) to use with your free hosting.
</p>
<ul class="space-y-2 mb-6">
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-2 mt-1"></i>
<span>Free domain registration</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-2 mt-1"></i>
<span>Renewable every 12 months</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-2 mt-1"></i>
<span>DNS management included</span>
</li>
</ul>
<a href="https://www.freenom.com/" target="_blank" class="inline-block bg-green-600 hover:bg-green-700 text-white px-6 py-2 rounded-lg font-medium transition duration-300">
Get Free Domain
</a>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md p-8">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Setup Guide</h2>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 text-blue-600 rounded-full h-8 w-8 flex items-center justify-center mr-4 flex-shrink-0 font-bold">1</div>
<div>
<h3 class="text-lg font-medium text-gray-800 mb-2">Create GitHub Account</h3>
<p class="text-gray-600">
Sign up for a free GitHub account at github.com if you don't have one already.
</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 text-blue-600 rounded-full h-8 w-8 flex items-center justify-center mr-4 flex-shrink-0 font-bold">2</div>
<div>
<h3 class="text-lg font-medium text-gray-800 mb-2">Upload Your Website</h3>
<p class="text-gray-600">
Create a new repository named "username.github.io" (replace username with your GitHub username) and upload all your website files.
</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 text-blue-600 rounded-full h-8 w-8 flex items-center justify-center mr-4 flex-shrink-0 font-bold">3</div>
<div>
<h3 class="text-lg font-medium text-gray-800 mb-2">Get Free Domain</h3>
<p class="text-gray-600">
Register a free domain at Freenom.com and configure its DNS to point to your GitHub Pages.
</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 text-blue-600 rounded-full h-8 w-8 flex items-center justify-center mr-4 flex-shrink-0 font-bold">4</div>
<div>
<h3 class="text-lg font-medium text-gray-800 mb-2">Configure GitHub Pages</h3>
<p class="text-gray-600">
In your GitHub repository settings, under "GitHub Pages", add your custom domain.
</p>
</div>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
</body>
</html>