Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Google Play Store</title>
- <link rel="stylesheet" href="style.css">
- <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
- <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
- <link href="https://fonts.googleapis.com/css2?family=Product+Sans:wght@400;500;700&display=swap" rel="stylesheet">
- </head>
- <body>
- <!-- Loading Screen -->
- <div class="loading-screen">
- <div class="loading-content">
- <img src="https://www.gstatic.com/android/market_images/web/play_prism_hlock_2x.png" alt="Google Play" class="loading-logo">
- <div class="loading-spinner"></div>
- </div>
- </div>
- <header>
- <nav>
- <div class="nav-left">
- <button class="menu-btn">
- <span class="material-icons">menu</span>
- </button>
- <a href="/" class="logo">
- <img src="https://www.gstatic.com/android/market_images/web/play_prism_hlock_2x.png" alt="Google Play" class="play-logo">
- </a>
- </div>
- <div class="search-container">
- <div class="search-bar">
- <span class="material-icons">search</span>
- <input type="text" placeholder="Search for apps & games" id="searchInput">
- <span class="material-icons search-voice">mic</span>
- </div>
- <div class="search-suggestions" id="searchSuggestions"></div>
- </div>
- <div class="user-actions">
- <button class="help-btn">
- <span class="material-icons">help_outline</span>
- </button>
- <button class="profile-btn">
- <img src="https://lh3.googleusercontent.com/a/default-user=s48" alt="Profile" class="profile-img">
- </button>
- </div>
- </nav>
- <div class="categories">
- <button class="active" data-category="all">For you</button>
- <button data-category="top">Top charts</button>
- <button data-category="kids">Kids</button>
- <button data-category="events">Events</button>
- <button data-category="premium">Premium</button>
- <button data-category="categories">Categories</button>
- <button data-category="editors">Editors' Choice</button>
- </div>
- </header>
- <main>
- <section class="featured-carousel">
- <div class="section-header">
- <h2>Featured & recommended</h2>
- </div>
- <div class="carousel-container">
- <button class="carousel-nav prev">
- <span class="material-icons">chevron_left</span>
- </button>
- <div class="carousel-content" id="featuredCarousel"></div>
- <button class="carousel-nav next">
- <span class="material-icons">chevron_right</span>
- </button>
- </div>
- </section>
- <section class="suggested-apps">
- <div class="section-header">
- <h2>Suggested for you</h2>
- <a href="#" class="see-more">See more</a>
- </div>
- <div class="horizontal-scroll" id="suggestedApps"></div>
- </section>
- <section class="top-apps">
- <div class="section-header">
- <h2>Top-rated games</h2>
- <a href="#" class="see-more">See more</a>
- </div>
- <div class="horizontal-scroll" id="topGames"></div>
- </section>
- <section class="popular-apps">
- <div class="section-header">
- <h2>Popular apps</h2>
- <a href="#" class="see-more">See more</a>
- </div>
- <div class="horizontal-scroll" id="popularApps"></div>
- </section>
- <section class="editors-choice">
- <div class="section-header">
- <h2>Editors' Choice apps</h2>
- <a href="#" class="see-more">See more</a>
- </div>
- <div class="horizontal-scroll" id="editorsChoice"></div>
- </section>
- </main>
- <footer>
- <div class="footer-content">
- <div class="footer-section">
- <h3>Google Play</h3>
- <ul>
- <li><a href="#">Play Pass</a></li>
- <li><a href="#">Play Points</a></li>
- <li><a href="#">Gift cards</a></li>
- <li><a href="#">Refund policy</a></li>
- </ul>
- </div>
- <div class="footer-section">
- <h3>For developers</h3>
- <ul>
- <li><a href="#">Google Play Console</a></li>
- <li><a href="#">Developer policies</a></li>
- <li><a href="#">Distribution agreement</a></li>
- </ul>
- </div>
- <div class="footer-section">
- <h3>Help & support</h3>
- <ul>
- <li><a href="#">Help Center</a></li>
- <li><a href="#">Report an issue</a></li>
- </ul>
- </div>
- <div class="footer-bottom">
- <div class="footer-links">
- <a href="#">Privacy</a>
- <a href="#">Terms of Service</a>
- <a href="#">About Google</a>
- <a href="#">Google</a>
- </div>
- <div class="footer-location">
- <button class="location-btn">
- <span class="material-icons">public</span>
- United States
- </button>
- </div>
- </div>
- </div>
- </footer>
- <script type="module" src="main.js"></script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement