Skip to content
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

Project Library - Kasia, Nella & Cholpon #50

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# project-library
# Project Movie Library
ttps://movielibraryknc.netlify.app/
This website allows users to filter movies by genre, sort by Title. Director, Year, Rating. It also has a randomizer button, which selects the random movie.
Binary file removed books-images/1984.jpg
Binary file not shown.
Binary file removed books-images/harry-potter-and-the-sorcerer.jpg
Binary file not shown.
Binary file removed books-images/moby-dick.jpg
Binary file not shown.
Binary file removed books-images/pride-and-prejudice.jpg
Binary file not shown.
Binary file removed books-images/the-chronicles-of-narnia.jpg
Binary file not shown.
Binary file removed books-images/the-great-gatsby.jpg
Binary file not shown.
Binary file removed books-images/the-hobbit.jpg
Binary file not shown.
Binary file removed books-images/the-lord-of-the-rings.jpg
Binary file not shown.
Binary file removed books-images/to-kill-a-mockingbird.jpg
Binary file not shown.
Binary file removed books-images/unknown.jpg
Binary file not shown.
78 changes: 76 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,87 @@
<!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>

<!-- h1 font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fascinate+Inline&display=swap" rel="stylesheet">

<!-- font for the text -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap"
rel="stylesheet">

</head>

<!-- Don't forget to connect the JavaScript file -->

<body>
<h1>Project Library</h1>
<!-- Don't forget to connect the JavaScript file -->
<header class="hero">
<div class="hero-h1">
<h1>Movie Time</h1>
<h2></h2>
</div>
</header>
<section class="movie-library">

<!-- Filter and Sorting Controls -->
<div class="controls">
<!-- Filter Section -->
<div class="filter">
<h3>Browse by Genre</h3>
<div id="filterOptions">

<button class="filter-btn" id="all-btn">All Genres</button>
<button class="filter-btn" id="action-btn">Action</button>
<button class="filter-btn" id="comedy-btn">Comedy</button>
<button class="filter-btn" id="drama-btn">Drama</button>
<button class="filter-btn" id="sci-fi-btn">Sci-Fi</button>
</div>
</div>



<select id="filterDropdown">
<option value="all">All Movies</option>
<option value="title">Title</option> <!--Alphabetical-->
<option value="director">Director</option> <!--Alphabetical-->
<option value="year">Year</option> <!--From latest to oldest-->
<option value="rating">Rating</option> <!--highest to lowest-->
</select>



</section>


<!-- Movie Cards (grid) -->
<section class="container" id="container">
</section>

<!-- Random Movie Button and Container for dysplaying chosen random movie -->
<section class="random-box">
<div class="randomMovieButtonBox">
<h2>Let Fate Choose Your Movie!</h2>
<button class="random-btn" id="random-btn">Surpise Me!</button>
</div>

<div class="randomMovieContainer" id="randomMovieContainer"></div>
</section>

<script src="script.js"></script>

</body>



</html>
7 changes: 0 additions & 7 deletions pull_request_template.md

This file was deleted.

Binary file removed recipe-images/baked-chicken.jpg
Binary file not shown.
Binary file removed recipe-images/cheat’s-cheesy-focaccia.jpg
Binary file not shown.
Binary file removed recipe-images/chicken-paprikash.jpg
Binary file not shown.
Binary file removed recipe-images/deep-fried-fish-bones.jpg
Binary file not shown.
Binary file removed recipe-images/fish-dish.jpg
Binary file not shown.
Binary file removed recipe-images/grilled.jpg
Binary file not shown.
Binary file removed recipe-images/individual-vegetarian-lasagnes.jpg
Binary file not shown.
Binary file removed recipe-images/meat.jpg
Binary file not shown.
Binary file removed recipe-images/vegetarian-shepherd's-pie.jpg
Binary file not shown.
Binary file removed recipe-images/vegetarian-stir-fried-garlic-s.jpg
Binary file not shown.
Loading