67 lines
3.0 KiB
HTML
67 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Steam</title>
|
||
<script type="module" src="./node_modules/bootstrap/dist/js/bootstrap.js"></script>
|
||
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.css" />
|
||
<link rel="stylesheet" href="style.css">
|
||
|
||
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<header>
|
||
<nav class="navbar navbar-expand-md navbar-dark">
|
||
<div class="container-fluid">
|
||
<a class="nav-link active" href="./index.html"> Главная </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 active" href="./basket.html">Корзина</a>
|
||
<a class="nav-link active" href="./library.html">Библиотека</a>
|
||
<a class="nav-link active" href="./entry.html">Вход</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
</header>
|
||
|
||
<main class="container-fluid p-2">
|
||
<!-- ВЕРХНИЙ DIV -->
|
||
<div class = "row info_about_game_pic_and_name">
|
||
<div class = "col-sm-5">
|
||
<img src="Dark Nights preview.jpg" alt="Dark Nights with Poe & Munro" class="img-fluid">
|
||
</div>
|
||
<div class = "col-sm-7 text-center align-items-center">
|
||
<p class = "info_about_game_name">Dark Nights with Poe and Munro</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class = "row">
|
||
<div class = "col-sm 12">
|
||
<p class = "info_about_game_text">Проведите местных радиоведущих По и Манро через шесть похожих на короткометражки эпизодов сверъестественной странности и обжигающего сюжета. От создателей The Infectious Madness of Doctor Dekker и The Shapeshifting Detective.</p>
|
||
|
||
</div>
|
||
<div class = "info_about_game_div_button text-center align-items-center">
|
||
<button class = "info_about_game_add_to_basket_button"> Добавить в корзину </button>
|
||
</div>
|
||
</div>
|
||
</main>
|
||
|
||
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center">
|
||
Сайт Чернышева Георгия, ПИбд-22
|
||
</footer>
|
||
|
||
</body>
|
||
|
||
</html> |