Hollywood is a famous place in Los Angeles, California, USA. It is known around the world as the center of the film and entertainment industry. Many big movies, TV shows, and music videos are made here. If you love movies, Hollywood is a dream place for you!
🎥 History of Hollywood
Hollywood started as a small town in the early 1900s. In 1910, it became part of Los Angeles. The first movie studio opened in 1911, and soon more studios came. Hollywood became popular because it had:
Sunny weather ☀️
Lots of open land 🌄
A growing city full of dreams 🌆
By the 1920s, Hollywood was the center of American films.
⭐ Hollywood Today
Today, Hollywood is still a huge part of the entertainment world. It is home to:
Famous movie studios like Warner Bros., Paramount, and Universal 🎞️
TV channels like Netflix, Disney+, and more 📺
Movie premieres and red carpet events 💃
Big celebrities and actors 🌟
🎭 The Hollywood Sign
The Hollywood Sign is one of the most famous signs in the world. It sits on the hills and spells "HOLLYWOOD" in big white letters. It was built in 1923 and is a symbol of dreams, fame, and success.
🌐 Why is Hollywood Important?
Hollywood is not just about movies. It also creates:
Jobs for actors, directors, writers, and more 👨🎤👩💻
Fashion and lifestyle trends 💅🕶️
Entertainment for people all over the world 🌍
People from many countries visit Hollywood every year. They want to see movie sets, walk on the Hollywood Walk of Fame, and maybe spot a celebrity!
🔥 Interesting Facts About Hollywood
More than 600 stars are on the Walk of Fame 🌟
The Oscars (Academy Awards) are held in Hollywood every year 🏆
Many international stars come to Hollywood to start their careers 🌎
💬 Final Words
Hollywood is more than a place – it’s a symbol of dreams, hard work, and global entertainment. Whether you watch action movies, romantic dramas, or funny shows, chances are they started in Hollywood.
🎬 Lights, Camera, Action! Welcome to the world of Hollywood.
HTML Script
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movies Yard - Your Ultimate Movie Destination</title>
<style>
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Netflix Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
body {
background-color: #141414;
color: #fff;
}
/* Header Styles */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 20px 50px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;
background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
transition: background-color 0.3s;
}
header.scrolled {
background-color: #141414;
}
.logo {
font-size: 2rem;
font-weight: bold;
color: #e50914;
text-decoration: none;
}
.nav-links {
display: flex;
gap: 20px;
}
.nav-links a {
color: #fff;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: #e50914;
}
/* Hero Section */
.hero {
height: 100vh;
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url('https://image.tmdb.org/t/p/original/9yBVqNruk6Ykrwc32qrK2TIE5xw.jpg') no-repeat center center/cover;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 50px;
position: relative;
}
.hero-content {
max-width: 600px;
z-index: 2;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
animation: fadeIn 1.5s ease-in-out;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 30px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
animation: fadeIn 2s ease-in-out;
}
.hero-buttons {
display: flex;
gap: 15px;
animation: fadeIn 2.5s ease-in-out;
}
.btn {
padding: 10px 25px;
border-radius: 4px;
font-weight: bold;
cursor: pointer;
border: none;
transition: all 0.3s;
}
.btn-primary {
background-color: #e50914;
color: white;
}
.btn-primary:hover {
background-color: #f40612;
}
.btn-secondary {
background-color: rgba(109, 109, 110, 0.7);
color: white;
}
.btn-secondary:hover {
background-color: rgba(109, 109, 110, 0.4);
}
/* Movies Grid */
.movies-section {
padding: 50px;
margin-top: -100px;
}
.section-title {
font-size: 1.8rem;
margin-bottom: 20px;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 3px;
background-color: #e50914;
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s;
}
.section-title:hover::after {
transform: scaleX(1);
}
.movies-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.movie-card {
position: relative;
border-radius: 8px;
overflow: hidden;
cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s;
}
.movie-card:hover {
transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
z-index: 10;
}
.movie-card img {
width: 100%;
height: 300px;
object-fit: cover;
display: block;
transition: filter 0.3s;
}
.movie-card:hover img {
filter: brightness(0.7);
}
.movie-info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
opacity: 0;
transition: opacity 0.3s;
}
.movie-card:hover .movie-info {
opacity: 1;
}
.movie-title {
font-weight: bold;
margin-bottom: 5px;
}
.movie-meta {
font-size: 0.8rem;
color: #d2d2d2;
}
/* Footer */
footer {
background-color: #000;
padding: 50px;
text-align: center;
}
.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 30px;
}
.footer-links a {
color: #757575;
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: #fff;
}
.copyright {
color: #757575;
font-size: 0.9rem;
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Responsive */
@media (max-width: 768px) {
header {
padding: 15px 20px;
}
.hero {
padding: 0 20px;
}
.hero h1 {
font-size: 2.5rem;
}
.movies-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.movies-section {
padding: 20px;
}
.movie-card img {
height: 220px;
}
}
</style>
</head>
<body>
<!-- Header -->
<header id="header">
<a href="#" class="logo">MOVIES YARD</a>
<nav class="nav-links">
<a href="#" class="nav-link">Home</a>
<a href="#" class="nav-link">Bollywood Movies</a>
<a href="#" class="nav-link">TV Shows</a>
<a href="#" class="nav-link">New & Popular</a>
<a href="#" class="nav-link">Tamil Movies</a>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>Unlimited Movies, TV Shows, and More.</h1>
<p>Watch anywhere. Cancel anytime. Ready to watch? Browse our collection of award-winning movies and TV shows.</p>
<div class="hero-buttons">
<button class="btn btn-primary watch-now-btn">Watch Now</button>
<button class="btn btn-secondary my-list-btn">Bollywood Movies</button>
</div>
</div>
</section>
<!-- Movies Sections -->
<main>
<section class="movies-section">
<h2 class="section-title">Popular on Movies Yard</h2>
<div class="movies-grid" id="popular-movies">
<!-- Movie cards will be added dynamically with JavaScript -->
</div>
<h2 class="section-title">Trending Now</h2>
<div class="movies-grid" id="trending-movies">
<!-- Movie cards will be added dynamically with JavaScript -->
</div>
<h2 class="section-title">New Releases</h2>
<div class="movies-grid" id="new-releases">
<!-- Movie cards will be added dynamically with JavaScript -->
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer-links">
<a href="#" class="footer-link">Audio Description</a>
<a href="#" class="footer-link">Help Center</a>
<a href="#" class="footer-link">Gift Cards</a>
<a href="#" class="footer-link">Media Center</a>
<a href="#" class="footer-link">Investor Relations</a>
<a href="#" class="footer-link">Jobs</a>
<a href="#" class="footer-link">Terms of Use</a>
<a href="#" class="footer-link">Privacy</a>
<a href="#" class="footer-link">Legal Notices</a>
<a href="#" class="footer-link">Cookie Preferences</a>
<a href="#" class="footer-link">Corporate Information</a>
<a href="#" class="footer-link">Contact Us</a>
</div>
<p class="copyright">© 2023 Movies Yard. All rights reserved.</p>
</footer>
<script>
// Sample movie data with proper images
const popularMovies = [
{ title: "Stranger Things", year: 2023, rating: "TV-14", genre: "Sci-Fi & Horror", image: "https://image.tmdb.org/t/p/w500/49WJfeN0moxb9IPfGn8AIqMGskD.jpg" },
{ title: "The Witcher", year: 2023, rating: "TV-MA", genre: "Fantasy & Adventure", image: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR8NFlBdwja_NRxDWz9ZCa4b6697qJ2w6aECQ&s" },
{ title: "Money Heist", year: 2021, rating: "TV-MA", genre: "Crime & Drama", image: "https://image.tmdb.org/t/p/w500/reEMJA1uzscCbkpeRJeTT2bjqUp.jpg" },
{ title: "Breaking Bad", year: 2013, rating: "TV-MA", genre: "Crime & Drama", image: "https://image.tmdb.org/t/p/w500/ggFHVNu6YYI5L9pCfOacjizRGt.jpg" },
{ title: "Peaky Blinders", year: 2022, rating: "TV-MA", genre: "Crime & Drama", image: "https://image.tmdb.org/t/p/w500/vUUqzWa2LnHIVqkaKVlVGkVcZIW.jpg" },
{ title: "The Crown", year: 2023, rating: "TV-MA", genre: "Drama & History", image: "https://image.tmdb.org/t/p/w500/1HdMUghqlgOIvbsU9ZtO40IPRzl.jpg" }
];
const trendingMovies = [
{ title: "Dark", year: 2020, rating: "TV-MA", genre: "Sci-Fi & Mystery", image: "https://resizing.flixster.com/iaR1XYS7j7Qrom8-YTjIxzKPxWY=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p14652182_b_v8_aa.jpg" },
{ title: "Narcos", year: 2017, rating: "TV-MA", genre: "Crime & Drama", image: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQPWpel7dKHXGkiOMmiwuFztxTK0MCYBYpiTuimYEvXEKjQSPq-T9JcQpObZtVXG2mOWDk&usqp=CAUhttps://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQPWpel7dKHXGkiOMmiwuFztxTK0MCYBYpiTuimYEvXEKjQSPq-T9JcQpObZtVXG2mOWDk&usqp=CAU" },
{ title: "The Queen's Gambit", year: 2020, rating: "TV-MA", genre: "Drama", image: "https://image.tmdb.org/t/p/w500/zU0htwkhNvBQdVSIKB9s6hgVeFK.jpg" },
{ title: "Squid Game", year: 2021, rating: "TV-MA", genre: "Drama & Thriller", image: "https://image.tmdb.org/t/p/w500/dDlEmu3EZ0Pgg93K2SVNLCjCSvE.jpg" },
{ title: "The Mandalorian", year: 2023, rating: "TV-14", genre: "Sci-Fi & Western", image: "https://image.tmdb.org/t/p/w500/eU1i6eHXlzMOlEq0ku1Rzq7Y4wA.jpg" },
{ title: "Loki", year: 2023, rating: "TV-14", genre: "Sci-Fi & Fantasy", image: "https://image.tmdb.org/t/p/w500/voHUmluYmKyleFkTu3lOXQG702u.jpg" }
];
const newReleases = [
{ title: "Oppenheimer", year: 2023, rating: "R", genre: "Drama & History", image: "https://image.tmdb.org/t/p/w500/8Gxv8gSFCU0XGDykEGv7zR1n2ua.jpg" },
{ title: "Barbie", year: 2023, rating: "PG-13", genre: "Comedy & Adventure", image: "https://image.tmdb.org/t/p/w500/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg" },
{ title: "John Wick: Chapter 4", year: 2023, rating: "R", genre: "Action & Thriller", image: "https://image.tmdb.org/t/p/w500/vZloFAK7NmvMGKE7VkF5UHaz0I.jpg" },
{ title: "Mission: Impossible", year: 2023, rating: "PG-13", genre: "Action & Adventure", image: "https://image.tmdb.org/t/p/w500/NNxYkU70HPurnNCSiCjYAmacwm.jpg" },
{ title: "The Flash", year: 2023, rating: "PG-13", genre: "Action & Sci-Fi", image: "https://image.tmdb.org/t/p/w500/rktDFPbfHfUbArZ6OOOKsXcv0Bm.jpg" },
{ title: "Elemental", year: 2023, rating: "PG", genre: "Animation & Comedy", image: "https://image.tmdb.org/t/p/w500/6oH378KUfCEitzJkm07r97L0RsZ.jpg" }
];
// Function to create movie cards
function createMovieCards() {
const popularGrid = document.getElementById('popular-movies');
const trendingGrid = document.getElementById('trending-movies');
const newReleasesGrid = document.getElementById('new-releases');
// Add popular movies
popularMovies.forEach(movie => {
const movieCard = createMovieCard(movie);
popularGrid.appendChild(movieCard);
});
// Add trending movies
trendingMovies.forEach(movie => {
const movieCard = createMovieCard(movie);
trendingGrid.appendChild(movieCard);
});
// Add new releases
newReleases.forEach(movie => {
const movieCard = createMovieCard(movie);
newReleasesGrid.appendChild(movieCard);
});
}
// Helper function to create a single movie card
function createMovieCard(movie) {
const movieCard = document.createElement('div');
movieCard.className = 'movie-card';
movieCard.innerHTML = `
<img src="${movie.image}" alt="${movie.title}" onerror="this.src='https://via.placeholder.com/300x450?text=No+Image'">
<div class="movie-info">
<div class="movie-title">${movie.title}</div>
<div class="movie-meta">${movie.year} • ${movie.rating} • ${movie.genre}</div>
</div>
`;
// Add click event to open YouTube channel in new tab
movieCard.addEventListener('click', () => {
window.open('https://www.youtube.com/@techpk3013', '_blank');
});
return movieCard;
}
// Function to handle all link clicks
function setupLinks() {
// Header navigation links
const navLinks = document.querySelectorAll('.nav-link');
navLinks.forEach(link => {
link.addEventListener('click', (e) => {
e.preventDefault();
window.open('https://www.youtube.com/@techpk3013', '_blank');
});
});
// Hero buttons
document.querySelector('.watch-now-btn').addEventListener('click', () => {
window.open('https://www.youtube.com/@techpk3013', '_blank');
});
document.querySelector('.my-list-btn').addEventListener('click', () => {
window.open('https://www.youtube.com/@techpk3013', '_blank');
});
// Footer links
const footerLinks = document.querySelectorAll('.footer-link');
footerLinks.forEach(link => {
link.addEventListener('click', (e) => {
e.preventDefault();
window.open('https://www.youtube.com/@techpk3013', '_blank');
});
});
}
// Header scroll effect
window.addEventListener('scroll', () => {
const header = document.getElementById('header');
if (window.scrollY > 50) {
header.classList.add('scrolled');
} else {
header.classList.remove('scrolled');
}
});
// Initialize the page
document.addEventListener('DOMContentLoaded', () => {
createMovieCards();
setupLinks();
});
</script>
</body>
</html>
0 Comments
If you have any question you can ask me feelfree.