Crypto News Website: User Guide
This package contains a complete, ready-to-use crypto news website built with HTML, CSS, and PHP. This guide will help you understand its core features and how to manage the content.

Key Features
Live Crypto Ticker: A real-time, scrolling price ticker on the homepage shows the live prices of top cryptocurrencies, making the site feel dynamic and current.

Built-in Article Search: The homepage includes a search bar that allows users to filter news articles by keywords or tags.

SEO-Friendly URLs: The site uses clean, human-readable URLs (e.g., your-site.com/article-title) instead of complex ones, which is great for both users and search engines.

Article Sharing: Each article page has social media buttons to easily share content on Facebook, WhatsApp, and LinkedIn.

Image Sliders: Articles can feature multiple images displayed in an automatic slider, making the content more engaging.

Dynamic Sitemap: An XML sitemap (sitemap.php) is automatically generated, which helps search engines like Google and Bing discover and index all of your articles.

How to Add New Articles
This website does not have a separate admin panel. All new articles are added by manually editing a single file: news-data.php.

Locate the File: Find the news-data.php file in the main directory of your website.

Open in a Text Editor: Open the file using a simple text editor like VS Code or Notepad.

Add a New Entry: The file contains a PHP array called $ARTICLES. To add a new article, you will add a new set of data within this array. Each article is its own array.

Fill in the Information: Use the following template for each new article, making sure to separate each entry with a comma:

[
    "title"         => "Your Article Title Here",
    "author"        => "Your Name",
    "category"      => "Crypto",
    "datePublished" => "YYYY-MM-DD", // Use this format
    "dateModified"  => "YYYY-MM-DD", // Optional
    "image"         => "URL to a main image",
    "images"        => [
        "URL for an image slider",
        "URL for another image"
    ],
    "tags"          => ["Your", "Tags", "Here"],
    "short"         => "A brief summary for the homepage.",
    "long"          => "The full content of your article. Use paragraphs."
],

Save and Upload: After you have added your new article's data, save the file and upload it to your web server, overwriting the old news-data.php file. The new article will now appear on your site.

SEO & Technical Notes
URL Structure: The .htaccess file handles the URL rewriting. Do not modify this file unless you know what you are doing. It ensures your URLs are clean and search engine-friendly.

XML Sitemap: The sitemap.php file automatically keeps your sitemap up-to-date with every article you add. For best results, ensure your robots.txt file has the correct sitemap link:
Sitemap: https://YOUR-DOMAIN-OR-SUBDOMAIN/sitemap.php

Structured Data: Each article page (content.php) is pre-coded with NewsArticle Schema Markup. This provides valuable information to search engines, which can help your content rank higher and appear in rich snippets.