Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
BekhUriy committed Nov 17, 2023
1 parent ccb76bd commit f486dbe
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 22 deletions.
25 changes: 12 additions & 13 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -1,38 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Bookshelf</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/2.0.0/modern-normalize.min.css"
integrity="sha512-4xo8blKMVCiXpTaLzQSLSw3KFOVPWhm/TRtuPVc4WG6kUgjH6J03IBuG7JZPkcWMxJ5huwaBpOpnwYElP/m6wg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
referrerpolicy="no-referrer"/>

<link rel="stylesheet" href="./css/styles.css" />
<link rel="stylesheet" href="./css/styles.css"/>
</head>

<body>
<load src='partials/header.html'/>
<load src="partials/header.html"/>
<main class="container">
<div class="home-page">
<aside>
<load src='partials/category-list.html'/>
<load src='partials/support-ua.html'/>
<load src="partials/category-list.html"/>
<load src="partials/support-ua.html"/>
</aside>

<load src='partials/best-sellers.html'/>
<load src='partials/scrollBtn.html'/>
<load src="partials/best-sellers.html"/>
<load src="partials/scrollBtn.html"/>
</div>
</main>

<load src='partials/modal-about.html'/>
<load src="partials/modal-about.html"/>

<load src='partials/footer.html'/>
<load src="partials/footer.html"/>

<script type="module" src="/index.js"></script>
</body>
Expand Down
17 changes: 8 additions & 9 deletions src/shoping-list.html
Original file line number Diff line number Diff line change
@@ -1,28 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Sopping-list</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/2.0.0/modern-normalize.min.css"
integrity="sha512-4xo8blKMVCiXpTaLzQSLSw3KFOVPWhm/TRtuPVc4WG6kUgjH6J03IBuG7JZPkcWMxJ5huwaBpOpnwYElP/m6wg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="./css/styles.css" />
referrerpolicy="no-referrer"/>
<link rel="stylesheet" href="./css/styles.css"/>
</head>

<body>
<load src='partials/header.html'/>
<load src="partials/header.html"/>
<main class="container">
<div class="shopping-page">
<div class="shopping-support">
<load src='partials/support-ua.html'/>
<load src="partials/support-ua.html"/>
</div>
<load src='partials/rent-block.html'/>
<load src="partials/rent-block.html"/>


</div>
Expand Down

0 comments on commit f486dbe

Please sign in to comment.