Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
zubairjammu786 authored Jan 25, 2024
1 parent 43b8b87 commit 22fab6b
Showing 1 changed file with 34 additions and 116 deletions.
150 changes: 34 additions & 116 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,146 +6,64 @@
<title>Zubitube Downloader</title>
<style>
body {
font-family: 'Roboto', sans-serif;
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}

header {
background-color: #333;
color: #fff;
padding: 1em 0;
.container {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
width: 80%;
max-width: 400px;
text-align: center;
}

section {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}

h1, h2 {
h1 {
color: #333;
}

.cta {
p {
color: #666;
}

img {
max-width: 100%;
height: auto;
margin-bottom: 20px;
text-align: center;
}

.btn {
.download-btn {
display: inline-block;
background-color: #3498db;
color: #fff;
padding: 10px 20px;
font-size: 16px;
text-align: center;
text-decoration: none;
background-color: #007bff;
color: #fff;
border-radius: 5px;
font-size: 16px;
margin-top: 15px;
transition: background-color 0.3s ease;
cursor: pointer;
border: none;
}

.btn:hover {
background-color: #0056b3;
}

.features-list, .usage-steps, .installation-steps {
list-style: none;
padding: 0;
}

.features-list li, .usage-steps li, .installation-steps li {
margin-bottom: 10px;
}

.screenshot img {
max-width: 100%;
height: auto;
margin-top: 20px;
display: block;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.usage-steps li:last-child {
margin-bottom: 0;
}

.link {
color: #007bff;
}

.feedback-section {
margin-top: 20px;
}

.feedback-section p {
text-align: center;
margin-top: 10px;
.download-btn:hover {
background-color: #2980b9;
}
</style>
</head>
<body>

<section>
<header>
<h1>Zubitube Downloader</h1>
</header>

<div class="cta">
<p>Zubitube Downloader is a standalone GUI software that allows you to download videos from YouTube with ease. It comes with a range of features to enhance your downloading experience. <a href="https://github.com/zubairjammu786/zubitubedownloader/releases/tag/v1.0.0" class="btn">Download Now</a></p>
</div>

<h2>Features</h2>
<ul class="features-list">
<li><strong>Single/Multiple URL Support:</strong> Download videos from a single URL or multiple URLs at once.</li>
<li><strong>Video Quality Selection:</strong> Choose the video quality that suits your needs.</li>
<li><strong>MP3 Only Downloader:</strong> Extract audio from videos and download them as MP3 files.</li>
<li><strong>Video Detail Display:</strong> View detailed information about the videos before downloading.</li>
<li><strong>User-Selected Download Location:</strong> Save your downloaded videos to a location of your choice.</li>
</ul>

<h2>Screenshots</h2>
<div class="screenshot">
<img src="ZUBI.PNG" alt="Zubitube Downloader">
</div>

<h2>How to Use</h2>
<ol class="usage-steps">
<li>Enter the URL(s) of the video(s) you want to download.</li>
<li>Select the desired video quality or choose to download as an MP3.</li>
<li>Choose the location where you want to save the downloaded video(s).</li>
<li><button id="downloadButton" class="btn">Download Now</button></li>
</ol>

<h2>Installation</h2>
<ol class="installation-steps">
<li>Download the latest release from the <a href="https://github.com/zubairjammu786/zubitubedownloader/releases" class="link">Releases</a> page.</li>
<li>Unzip the downloaded file to a location of your choice.</li>
<li>Run the executable file to start using Zubitube Downloader.</li>
</ol>

<div class="feedback-section">
<h2>Feedback</h2>
<p>If you encounter any issues or have suggestions for improvement, please feel free to <a href="https://github.com/zubairjammu786/zubitubedownloader/issues" class="link">open an issue</a> on GitHub.</p>

<p>We hope you enjoy using Zubitube Downloader!</p>
</div>
</section>

<script>
// Add your JavaScript code here, if needed
document.getElementById("downloadButton").addEventListener("click", function() {
// Add download functionality here
alert("Download button clicked!");
});
</script>
<div class="container">
<img src="ZUBI.PNG" alt="Zubitube Downloader">
<h1>Zubitube Downloader</h1>
<p>A standalone GUI software to download videos from YouTube with ease.</p>
<a href="https://github.com/zubairjammu786/zubitubedownloader/releases/tag/v1.0.0" class="download-btn">Download Now</a>
</div>
</body>
</html>

0 comments on commit 22fab6b

Please sign in to comment.