-
Notifications
You must be signed in to change notification settings - Fork 115
Project Library - Movie library #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Sherrydev11
wants to merge
4
commits into
Technigo:main
Choose a base branch
from
Sherrydev11:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,162 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
|
|
||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <link rel="stylesheet" href="style.css"> | ||
| <!-- Don't forget to change the title and connect the CSS file --> | ||
| <title>Project Library</title> | ||
| <title>Rent a movie</title> | ||
| </head> | ||
|
|
||
| <body> | ||
| <h1>Project Library</h1> | ||
| <!-- Don't forget to connect the JavaScript file --> | ||
|
|
||
| <div class="hero"> | ||
| <div class="hero-h1"> | ||
| <h1>FilmNest</h1> | ||
| </div> | ||
|
|
||
| </div> | ||
|
|
||
| <div class="filter" id="filter-button"> | ||
| <p>Filter by genre | ||
| <button id="sci-fi">Sci-Fi</button> | ||
| <button id="horror">Horror</button> | ||
| <button id="comedy">Comedy</button> | ||
| <button id="romance">Romance</button> | ||
| </p> | ||
| </div> | ||
|
|
||
| <div class="sort" id="filter-button"> | ||
| <p> Sort by year | ||
| <button id="sort-new-to-old">Sort New to Old</button> | ||
| <button id="sort-old-to-new">Sort Old to New</button> | ||
|
|
||
| </p> | ||
| </div> | ||
|
|
||
|
|
||
|
|
||
| <section id="movies-section"> | ||
| <!-- Movie Inception --> | ||
| <article> | ||
| <img src="./movie-images/inception-movie.jpg" alt="Inception" /> | ||
| <div class="card-content"> | ||
| <h2>Inception</h2> | ||
| <p><strong>Director:</strong> Christopher Nolan | <strong>Year:</strong> 2010</p> | ||
| <p><strong>Genre:</strong> Sci-Fi</p> | ||
| <p class="description">A mind-bending exploration of dreams within dreams, directed by Christopher Nolan.</p> | ||
| </div> | ||
| </article> | ||
|
|
||
| <!-- Movie Get Out --> | ||
| <article> | ||
| <img src="./movie-images/get-out-movie.jpeg" alt="Get Out"> | ||
| <div class="card-content"> | ||
| <h2>Get Out</h2> | ||
| <p><strong>Director:</strong> Jordan Peele | <strong>Year:</strong> 2017</p> | ||
| <p><strong>Genre:</strong> Horror</p> | ||
| <p class="description">A social horror film that blends suspense with sharp commentary on race and society. | ||
| </p> | ||
| </div> | ||
| </article> | ||
|
|
||
| <!-- Movie Back To Future --> | ||
| <article> | ||
| <img src="./movie-images/back-to-future.jpg" alt="Back to the Future"> | ||
| <div class="card-content"> | ||
| <h2>Back to the Future</h2> | ||
| <p><strong>Director:</strong> Robert Zemeckis | <strong>Year:</strong> 1985</p> | ||
| <p><strong>Genre:</strong> Sci-Fi</p> | ||
| <p class="description">A classic time-travel adventure with humor, starring Michael J. Fox.</p> | ||
| </div> | ||
| </article> | ||
|
|
||
| <!-- Movie The Exorcist --> | ||
| <article> | ||
| <img src="./movie-images/the-exorcist.jpg" alt="The Exorcist"> | ||
| <div class="card-content"> | ||
| <h2>The Exorcist</h2> | ||
| <p><strong>Director:</strong> William Friedkin | <strong>Year:</strong> 1973</p> | ||
| <p><strong>Genre:</strong> Horror</p> | ||
| <p class="description">One of the scariest films of all time, revolving around demonic possession.</p> | ||
| </div> | ||
| </article> | ||
|
|
||
| <!-- Movie The Hangover --> | ||
| <article> | ||
| <img src="./movie-images/the-hangover.jpeg" alt="The Hangover"> | ||
| <div class="card-content"> | ||
| <h2>The Hangover</h2> | ||
| <p><strong>Director:</strong> Todd Phillips | <strong>Year:</strong> 2009</p> | ||
| <p><strong>Genre:</strong> Comedy</p> | ||
| <p class="description">A hilarious tale of a wild night gone wrong, featuring unforgettable misadventures.</p> | ||
| </div> | ||
| </article> | ||
|
|
||
| <!-- Movie Matrix --> | ||
| <article> | ||
| <img src="./movie-images/matrix.jpg" alt="The Matrix"> | ||
| <div class="card-content"> | ||
| <h2>The Matrix</h2> | ||
| <p><strong>Directors:</strong> Lana Wachowski, Lilly Wachowski | <strong>Year:</strong> 1999</p> | ||
| <p><strong>Genre:</strong> Sci-Fi</p> | ||
| <p class="description">A groundbreaking sci-fi action film about reality, artificial intelligence, and | ||
| rebellion.</p> | ||
| </div> | ||
| </article> | ||
|
|
||
| <!-- Movie Shaun of the Dead --> | ||
| <article> | ||
| <img src="./movie-images/shaun-of-the-dead.jpg" alt="Shaun of the Dead"> | ||
| <div class="card-content"> | ||
| <h2>Shaun of the Dead</h2> | ||
| <p><strong>Director:</strong> Edgar Wright | <strong>Year:</strong> 2004</p> | ||
| <p><strong>Genre:</strong> Horror, Comedy</p> | ||
| <p class="description">A man's uneventful life takes a turn when he has to lead his friends and family through | ||
| a | ||
| zombie apocalypse.</p> | ||
| </div> | ||
| </article> | ||
|
|
||
| <!-- Movie A Quiet Place --> | ||
| <article> | ||
| <img src="./movie-images/a-quiet-place.jpg" alt="A Quiet Place"> | ||
| <div class="card-content"> | ||
| <h2>A Quiet Place</h2> | ||
| <p><strong>Director:</strong> John Krasinski | <strong>Year:</strong> 2018</p> | ||
| <p><strong>Genre:</strong> Horror, Sci-Fi, Thriller</p> | ||
| <p class="description">A tense, almost silent thriller about surviving in a world where making noise can be | ||
| deadly.</p> | ||
| </div> | ||
| </article> | ||
|
|
||
| <!-- Movie Guardians of the Galaxy --> | ||
| <article> | ||
| <img src="./movie-images/guardian-of-galaxy.jpg" alt="Guardians of the Galaxy"> | ||
| <div class="card-content"> | ||
| <h2>Guardians of the Galaxy</h2> | ||
| <p><strong>Director:</strong> James Gunn | <strong>Year:</strong> 2014</p> | ||
| <p><strong>Genre:</strong> Sci-Fi, Action, Comedy</p> | ||
| <p class="description">A fun-filled space adventure with a quirky band of misfits saving the universe.</p> | ||
| </div> | ||
| </article> | ||
|
|
||
| <!-- Movie Her --> | ||
| <article> | ||
| <img src="./movie-images/her.jpeg" alt="Her"> | ||
| <div class="card-content"> | ||
| <h2>Her</h2> | ||
| <p><strong>Director:</strong> Spike Jonze | <strong>Year:</strong> 2013</p> | ||
| <p><strong>Genre:</strong> Sci-Fi, Romance</p> | ||
| <p class="description">A futuristic love story between a man and an artificial intelligence operating system. | ||
| </p> | ||
| </div> | ||
| </article> | ||
| </section> | ||
|
|
||
| <script src="script.js"></script> | ||
|
|
||
| </body> | ||
|
|
||
| </html> | ||
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting! We have never tried ! /Kasia, Cholpon, Nella