PIbd-21_MasenkinMS_WebDev_F.../LabWork_02/about_us.html
2023-11-10 02:05:00 +04:00

92 lines
4.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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 href="https://fonts.googleapis.com/css?family=Montserrat:regular,500,600,700,800,900&display=swap" rel="stylesheet"/>
<link rel="stylesheet" href="src/css/style.css">
<link rel="favicon" href="public/favicon/favicon.ico">
<title>Bookshelf</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="header__container _container">
<div class="header__logo logo">
<div class="logo__img">
<img src="public/images/logo.png" alt="logo.png">
</div>
<div class="logo__nametag">
<div class="nametag__title">Bookshelf</div>
<div class="nametag__subtitle">Online-library</div>
</div>
</div>
<nav class="header__nav nav">
<ul class="nav__list">
<li class="nav__item">
<a href="index.html" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="armor.html" class="nav__link">Armor</a>
</li>
<li class="nav__item">
<a href="" class="nav__link">Tools</a>
</li>
<li class="nav__item">
<a href="" class="nav__link">Sword</a>
</li>
<li class="nav__item">
<a href="" class="nav__link">Bow</a>
</li>
<li class="nav__item">
<a href="" class="nav__link">Trident</a>
</li>
</ul>
</nav>
<div class="account">
<div class="account__img">
<img src="public/images/avatar.png" alt="avatar.png">
</div>
<a class="account__link" href="account.html">My account</a>
</div>
</div>
</header>
<main class="main_about">
<div class="main__container _container">
<div class="main__about">
<p class="main__about_info">
Welcome to our online library! We are a team of enthusiasts who are committed to making reading accessible to all. We know how important enchantment books are for Minecraft, but due to the variety of types of enchantments and the vastness of their application, even experienced players cannot intelligently choose the enchantments they need.<br>
Our goal is to make the possibility of enchanting accessible and convenient for everyone, and our book selector can help you with that. Go to the desired section and select the books you need - that's all you need to do!<br>
Our app is the only one of its kind. All ideas are patented and copyrighted. Any borrowing or use of materials from our labor must be negotiated with our managers, otherwise a lawsuit will follow in your side.
</p>
</div>
</div>
</main>
<footer class="footer">
<div class="footer__container _container">
<nav class="footer__nav nav">
<ul class="nav__list">
<li class="nav__item">
<a href="about_us.html" class="nav__link">About us</a>
</li>
<li class="nav__item">
<a href="contact_us.html" class="nav__link">Contact us</a>
</li>
</ul>
</nav>
<div class="footer__privacy">
© made by Factorino. All rights reserved.
</div>
</div>
</footer>
</div>
</body>
</html>