Advertisement
xoxodaymxo

index.html

Jan 11th, 2025
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 6.09 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Google Play Store</title>
  7.     <link rel="stylesheet" href="style.css">
  8.     <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
  9.     <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
  10.     <link href="https://fonts.googleapis.com/css2?family=Product+Sans:wght@400;500;700&display=swap" rel="stylesheet">
  11. </head>
  12. <body>
  13.     <!-- Loading Screen -->
  14.     <div class="loading-screen">
  15.         <div class="loading-content">
  16.             <img src="https://www.gstatic.com/android/market_images/web/play_prism_hlock_2x.png" alt="Google Play" class="loading-logo">
  17.             <div class="loading-spinner"></div>
  18.         </div>
  19.     </div>
  20.  
  21.     <header>
  22.         <nav>
  23.             <div class="nav-left">
  24.                 <button class="menu-btn">
  25.                     <span class="material-icons">menu</span>
  26.                 </button>
  27.                 <a href="/" class="logo">
  28.                     <img src="https://www.gstatic.com/android/market_images/web/play_prism_hlock_2x.png" alt="Google Play" class="play-logo">
  29.                 </a>
  30.             </div>
  31.             <div class="search-container">
  32.                 <div class="search-bar">
  33.                     <span class="material-icons">search</span>
  34.                     <input type="text" placeholder="Search for apps & games" id="searchInput">
  35.                     <span class="material-icons search-voice">mic</span>
  36.                 </div>
  37.                 <div class="search-suggestions" id="searchSuggestions"></div>
  38.             </div>
  39.             <div class="user-actions">
  40.                 <button class="help-btn">
  41.                     <span class="material-icons">help_outline</span>
  42.                 </button>
  43.                 <button class="profile-btn">
  44.                     <img src="https://lh3.googleusercontent.com/a/default-user=s48" alt="Profile" class="profile-img">
  45.                 </button>
  46.             </div>
  47.         </nav>
  48.         <div class="categories">
  49.             <button class="active" data-category="all">For you</button>
  50.             <button data-category="top">Top charts</button>
  51.             <button data-category="kids">Kids</button>
  52.             <button data-category="events">Events</button>
  53.             <button data-category="premium">Premium</button>
  54.             <button data-category="categories">Categories</button>
  55.             <button data-category="editors">Editors' Choice</button>
  56.         </div>
  57.     </header>
  58.  
  59.     <main>
  60.         <section class="featured-carousel">
  61.             <div class="section-header">
  62.                 <h2>Featured & recommended</h2>
  63.            </div>
  64.            <div class="carousel-container">
  65.                <button class="carousel-nav prev">
  66.                    <span class="material-icons">chevron_left</span>
  67.                </button>
  68.                <div class="carousel-content" id="featuredCarousel"></div>
  69.                <button class="carousel-nav next">
  70.                    <span class="material-icons">chevron_right</span>
  71.                </button>
  72.            </div>
  73.        </section>
  74.  
  75.        <section class="suggested-apps">
  76.            <div class="section-header">
  77.                <h2>Suggested for you</h2>
  78.                <a href="#" class="see-more">See more</a>
  79.            </div>
  80.            <div class="horizontal-scroll" id="suggestedApps"></div>
  81.        </section>
  82.  
  83.        <section class="top-apps">
  84.            <div class="section-header">
  85.                <h2>Top-rated games</h2>
  86.                <a href="#" class="see-more">See more</a>
  87.            </div>
  88.            <div class="horizontal-scroll" id="topGames"></div>
  89.        </section>
  90.  
  91.        <section class="popular-apps">
  92.            <div class="section-header">
  93.                <h2>Popular apps</h2>
  94.                <a href="#" class="see-more">See more</a>
  95.            </div>
  96.            <div class="horizontal-scroll" id="popularApps"></div>
  97.        </section>
  98.  
  99.        <section class="editors-choice">
  100.            <div class="section-header">
  101.                <h2>Editors' Choice apps</h2>
  102.                <a href="#" class="see-more">See more</a>
  103.            </div>
  104.            <div class="horizontal-scroll" id="editorsChoice"></div>
  105.        </section>
  106.    </main>
  107.  
  108.    <footer>
  109.        <div class="footer-content">
  110.            <div class="footer-section">
  111.                <h3>Google Play</h3>
  112.                <ul>
  113.                    <li><a href="#">Play Pass</a></li>
  114.                    <li><a href="#">Play Points</a></li>
  115.                    <li><a href="#">Gift cards</a></li>
  116.                    <li><a href="#">Refund policy</a></li>
  117.                </ul>
  118.            </div>
  119.            <div class="footer-section">
  120.                <h3>For developers</h3>
  121.                <ul>
  122.                    <li><a href="#">Google Play Console</a></li>
  123.                    <li><a href="#">Developer policies</a></li>
  124.                    <li><a href="#">Distribution agreement</a></li>
  125.                </ul>
  126.            </div>
  127.            <div class="footer-section">
  128.                <h3>Help & support</h3>
  129.                <ul>
  130.                    <li><a href="#">Help Center</a></li>
  131.                    <li><a href="#">Report an issue</a></li>
  132.                </ul>
  133.            </div>
  134.            <div class="footer-bottom">
  135.                <div class="footer-links">
  136.                    <a href="#">Privacy</a>
  137.                    <a href="#">Terms of Service</a>
  138.                    <a href="#">About Google</a>
  139.                    <a href="#">Google</a>
  140.                </div>
  141.                <div class="footer-location">
  142.                    <button class="location-btn">
  143.                        <span class="material-icons">public</span>
  144.                        United States
  145.                    </button>
  146.                </div>
  147.            </div>
  148.        </div>
  149.    </footer>
  150.  
  151.    <script type="module" src="main.js"></script>
  152. </body>
  153. </html>
  154.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement