150 lines
6.3 KiB
HTML
150 lines
6.3 KiB
HTML
|
<html lang="ru">
|
|||
|
<head>
|
|||
|
<meta charset="utf-8">
|
|||
|
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|||
|
<link href="https://fonts.cdnfonts.com/css/correction-tape" rel="stylesheet">
|
|||
|
<title>Cinema</title>
|
|||
|
<script type="module" src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|||
|
<link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
|
|||
|
<link href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet"/>
|
|||
|
<link rel="stylesheet" href="./style.css">
|
|||
|
|
|||
|
<script>
|
|||
|
function toggleMenu() {
|
|||
|
var menuWrapper = document.getElementById("menu-wrapper");
|
|||
|
menuWrapper.classList.toggle("open");
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
</head>
|
|||
|
<body class="h-100 d-flex flex-column">
|
|||
|
<div id="menu-wrapper">
|
|||
|
<div id="menu">
|
|||
|
<ul>
|
|||
|
<li><a href="/">Главная</a></li>
|
|||
|
<!-- <li><a href="./page2(cinema).html">Кино</a></li> -->
|
|||
|
<li><a href="./page2(concerts).html">Концерты</a></li>
|
|||
|
<li><a href="./page2(theatre).html">Театр</a></li>
|
|||
|
<li><a href="./myTickets.html">Мои билеты</a></li>
|
|||
|
<li><a href="./about.html">О сайте</a></li>
|
|||
|
</ul>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<header>
|
|||
|
<nav class="navbar navbar-expand-sm navbar-dark">
|
|||
|
<div class="container-fluid">
|
|||
|
|
|||
|
<!-- <p id="toggle-menu" onclick="toggleMenu()">Кликни здесь для открытия/закрытия меню</p> -->
|
|||
|
<a id="toggle-menu" onclick="toggleMenu()">
|
|||
|
<h1>TicketsBook</h1>
|
|||
|
</a>
|
|||
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
|
|||
|
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|||
|
<span class="navbar-toggler-icon"></span>
|
|||
|
</button>
|
|||
|
<div class="navbar-collapse collapse justify-content-end" id="navbarNav">
|
|||
|
<div class="navbar-nav">
|
|||
|
<a class="nav-link" href="./signingIn.html">вход/регистрация</a>
|
|||
|
<a class="nav-link" href="./lkAdmin.html">админ</a>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</nav>
|
|||
|
</header>
|
|||
|
<main class="container-fluid p-2">
|
|||
|
<div class="container">
|
|||
|
<div class="row">
|
|||
|
<div class="col-md-3 product mb-3"><!--col-md-3 - ширина элемента, col-md-* - 992px mb-3 - отступы по вертикали-->
|
|||
|
<div class="product-img">
|
|||
|
<img src="pictures/ac_dc.jpg" alt="AC/DC" class="img-fluid">
|
|||
|
</div>
|
|||
|
<div class="product-info">
|
|||
|
<h2>AC/DC</h2>
|
|||
|
<p>08.12.23</p>
|
|||
|
<p>Price: $10</p>
|
|||
|
<p>Place: Russia, Moscow</p>
|
|||
|
<div class="button-overlayAdd">
|
|||
|
<button class="btn btn-primary" onclick="">add to cart</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="col-md-3 product mb-3">
|
|||
|
<div class="product-img">
|
|||
|
<img src="pictures/deftones.jpg" alt="Deftones" class="img-fluid" >
|
|||
|
</div>
|
|||
|
<div class="product-info">
|
|||
|
<h2>Deftones</h2>
|
|||
|
<p>03.07.24</p>
|
|||
|
<p>Price: $15</p>
|
|||
|
<p>Place: USA, California</p>
|
|||
|
<div class="button-overlayAdd">
|
|||
|
<button class="btn btn-primary" onclick="">add to cart</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="col-md-3 product mb-3">
|
|||
|
<div class="product-img">
|
|||
|
<img src="pictures/placebo.jpg" alt="Placebo" class="img-fluid">
|
|||
|
</div>
|
|||
|
<div class="product-info">
|
|||
|
<h2>Placebo</h2>
|
|||
|
<p>04.05.24</p>
|
|||
|
<p>Price: $20</p>
|
|||
|
<p>Place: Canada, Ottawa</p>
|
|||
|
<div class="button-overlayAdd">
|
|||
|
<button class="btn btn-primary" onclick="">add to cart</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="col-md-3 product mb-3">
|
|||
|
<div class="product-img">
|
|||
|
<img src="pictures/slipknot.jpg" alt="Slipknot" class="img-fluid">
|
|||
|
</div>
|
|||
|
<div class="product-info">
|
|||
|
<h2>Slipknot</h2>
|
|||
|
<p>09.02.24</p>
|
|||
|
<p>Price: $20</p>
|
|||
|
<p>Place: Germany, Berlin</p>
|
|||
|
<div class="button-overlayAdd">
|
|||
|
<button class="btn btn-primary" onclick="">add to cart</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="col-md-3 product mb-3">
|
|||
|
<div class="product-img">
|
|||
|
<img src="pictures/the_cure.jpg" alt="The Cure" class="img-fluid">
|
|||
|
</div>
|
|||
|
<div class="product-info">
|
|||
|
<h2>The Cure</h2>
|
|||
|
<p>25.07.25</p>
|
|||
|
<p>Price: $20</p>
|
|||
|
<p>Place: Germany, Berlin</p>
|
|||
|
<div class="button-overlayAdd">
|
|||
|
<button class="btn btn-primary" onclick="">add to cart</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="col-md-3 product mb-3">
|
|||
|
<div class="product-img">
|
|||
|
<img src="pictures/weezer.jpg" alt="Weezer" class="img-fluid">
|
|||
|
</div>
|
|||
|
<div class="product-info">
|
|||
|
<h2>Weezer</h2>
|
|||
|
<p>19.08.23</p>
|
|||
|
<p>Price: $20</p>
|
|||
|
<p>Place: Germany, Berlin</p>
|
|||
|
<div class="button-overlayAdd">
|
|||
|
<button class="btn btn-primary" onclick="">add to cart</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</main>
|
|||
|
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center">
|
|||
|
Иевлева Милана, 2023
|
|||
|
</footer>
|
|||
|
</body>
|
|||
|
</html>
|