Skip to content

SlaVR7/kinooskars

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kinooskars

Kinooskars is a project that recreates the basic layout of my old website for movies. It was initially created while I was learning HTML and CSS and later enhanced with a burger menu using JavaScript. The layout is fully adaptive for various screen sizes.

Technology Stack:

  • HTML
  • CSS
  • JavaScript

Demo

You can see the live demo of the project at https://slavr7.github.io/kinooskars/

Installation and Usage

To run this project locally, follow these steps:

  1. Clone this repository.
  2. Open the index.html file in your web browser.

Screenshot

Screenshot 1

Features

  • Responsive layout for different screen sizes.
  • Burger menu implemented with JavaScript.

Code Examples

Here's an example of how the burger menu is implemented in JavaScript:

// JavaScript code for burger menu
const burgerMenu = document.querySelector('.burger-menu');

function toggleBurgerMenu() {
    burgerMenu.classList.toggle('burger-hidden');
}