92 lines
4.7 KiB
HTML
92 lines
4.7 KiB
HTML
|
<html lang="ru">
|
|||
|
|
|||
|
<head>
|
|||
|
<meta charset = "utf-8">
|
|||
|
<title> Техник </title>
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|||
|
<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">
|
|||
|
</head>
|
|||
|
|
|||
|
<body class="h-100 d-flex flex-column">
|
|||
|
|
|||
|
<header>
|
|||
|
<nav class="navbar navbar-expand-md">
|
|||
|
<div class="container-fluid">
|
|||
|
<a class = "navbar-brand" href = "./" style="color: #6A3502;">
|
|||
|
<i class="fa-solid fa-microchip"></i>
|
|||
|
Техник
|
|||
|
</a>
|
|||
|
|
|||
|
<form class="d-flex">
|
|||
|
<input class="form-control" type="search" placeholder="Поиск по сайту" aria-label="Search">
|
|||
|
<button class="btn btn-outline-*" type="submit" style="color: #6A3502;"><i class="fa-solid fa-search"></i></button>
|
|||
|
</form>
|
|||
|
|
|||
|
<a class="nav-link" href="./Login.html">Вход</a>
|
|||
|
</div>
|
|||
|
</nav>
|
|||
|
</header>
|
|||
|
|
|||
|
<main class="container-fluid" style="background-color: antiquewhite;">
|
|||
|
<h4 id="model"></h4>
|
|||
|
<div class="d-flex row">
|
|||
|
<article class="d-flex flex-column p-2 col-lg-5" style="background-color: white; border-radius: 12px;">
|
|||
|
<a class="image-container"><img id="image-preview" src="https://via.placeholder.com/200" class="d-block" alt="logo" width="400" id="image-preview"></a>
|
|||
|
</article>
|
|||
|
<article class="d-flex flex-column p-2 col-lg-7">
|
|||
|
<div class="p-2">
|
|||
|
<div class="navbar-nav d-flex flex-lg-column" style="background-color: white; border-radius: 12px;">
|
|||
|
<h5 class="text-center" id="price"></h5>
|
|||
|
<button class="btn btn-warning justify-content-end" type="submit">Купить</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="navbar-nav p-2">
|
|||
|
<div style="background-color: white; border-radius: 12px;">
|
|||
|
<h5 class="p-2">Описание</h5>
|
|||
|
<h5 class="nav-link p-2" style="font-size: larger;" id="description"></h5>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</article>
|
|||
|
</div>
|
|||
|
<div>
|
|||
|
<article class="d-flex flex-column t-2">
|
|||
|
<div class="navbar-nav p-2">
|
|||
|
<div style="background-color: white; border-radius: 12px;">
|
|||
|
<h5 class="p-2">Характеристика</h5>
|
|||
|
<a class="nav-link p-2" style="font-size: larger;" id="specific"></a>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</article>
|
|||
|
</div>
|
|||
|
<div>
|
|||
|
<article class="d-flex flex-column t-2">
|
|||
|
<div class="navbar-nav p-2">
|
|||
|
<div style="background-color: white; border-radius: 12px;">
|
|||
|
<h5 class="p-2">Самый популярный отзыв</h5>
|
|||
|
<a class="nav-link p-2" style="font-size: larger;"> <p>markoni89</p> <b>Срок использования:</b> Менее месяца <p><b>Достоинства</b></p><p> отличный процессор 12 поколения, хорош и мощностью и энергопотреблением;</p>
|
|||
|
<p><b>Недостатки</b></p><p>сильно маркий пластик корпуса (как и у всей линейки ноутов от MSI), странно что об этом не подумали заранее и вдвойне странно при такой удачной клавиатуре;</p>
|
|||
|
<p><b>Комментарий</b></p><p>На данный момент это наилучший вариант для покупки по критерию цена-качество. Железо крайне бодрое, в этой ценовой категории у других производителей нет адекватной конкуренции, даже следующий класс может уступать данному товарищу от MSI.</p></a>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</article>
|
|||
|
</div>
|
|||
|
</main>
|
|||
|
|
|||
|
<footer class="footer mt-auto d-flex flex-shrink-0 align-items-center">
|
|||
|
© 2023 Компания Техник. Администрация Сайта не несет ответственности за размещаемые Пользователями материалы (в т.ч. информацию и изображения), их содержание и качество.
|
|||
|
</footer>
|
|||
|
|
|||
|
<script type="module">
|
|||
|
import validation from "./js/validation";
|
|||
|
import { productPage } from "./js/lines"
|
|||
|
|
|||
|
document.addEventListener('DOMContentLoaded', () => {
|
|||
|
validation();
|
|||
|
productPage();
|
|||
|
});
|
|||
|
</script>
|
|||
|
</body>
|
|||
|
</html>
|