Skip to content
Open

Footer #1747

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
257 changes: 150 additions & 107 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "parcel-project-template",
"version": "2.0.0",
"description": "",
"homepage": "https://goitacademy.github.io/parcel-project-template",
"homepage": "https://DutuGabriel.github.io/Team-3-project",
"scripts": {
"start": "parcel src/*.html",
"build": "parcel build src/*.html --public-url /parcel-project-template/"
"build": "parcel build src/*.html --public-url /Team-3-project/"
},
"repository": {
"type": "git",
Expand Down
63 changes: 63 additions & 0 deletions src/images/icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/images/logo.png
Binary file not shown.
Binary file added src/images/logoalb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 15 additions & 4 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
<!DOCTYPE html>
<html lang="ru">
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page title</title>
<title>Team 3 Project</title>
<link rel="stylesheet" href="./sass/index.scss" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<script type="module" src="./index.js"></script>
</head>
<body>
<h1>Example title</h1>
<!-- ❗️❗️❗️ Add partials like so for every page -->
<include src="./partials/example.html"></include>
<include src="./partials/header.html"></include>
<include src="./partials/hero.html"></include>
<include src="./partials/aboutus.html"></include>
<include src="./partials/catalog.html"></include>
<include src="./partials/modal.html"></include>
<include src="./partials/sale.html"></include>
<include src="./partials/footer.html"></include>
</body>
</html>
37 changes: 0 additions & 37 deletions src/partials/example.html

This file was deleted.

70 changes: 70 additions & 0 deletions src/partials/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<!--Footer.-->
<footer>
<footer class="site-footer">
<div class="footer-container">
<div class="footer-left">
<a href="index.html"
><img src="./images/logoalb.png" alt="Logo" class="footer-logo"
/></a>
<address>
<ul class="contacts-list-footer-list">
<li class="contacts-item-footer">
<a class="contacts-link-footer-link" href="tel:+380684439426"
>+380 (68) 443-94-26</a
>
</li>
<li class="contacts-item-footer">
<a
class="contacts-link-footer-adr-link"
href="https://www.google.com/maps/place/1678+Pioneer+Rd,+Salt+Lake+City,+UT+84104,+Сполучені+Штати+Америки/@40.7335892,-111.9622754,17z/data=!3m1!4b1!4m6!3m5!1s0x8752f35b0826d399:0x2b26230524fd3ca3!8m2!3d40.7335892!4d-111.9600867!16s%2Fg%2F11bw41vm_p"
target="_blank"
rel="noreferrer noopener"
>1678 S. Pioneer Road Salt Lake City UT 84104</a
>
</li>
</ul>
</address>
</div>
<div class="footer-center">
<ul class="footer-links">
<li><a href="#">ABOUT US</a></li>
<li><a href="#">CATALOG</a></li>
<li><a href="#">SALE</a></li>
</ul>
</div>
<div class="footer-right">
<ul class="social-icons">
<a href="https://www.facebook.com/" target="_blank" class="soc-link">
<svg class="social-icon" width="24" height="24">
<use href="./images/icons.svg#icon-Facebook"></use>
</svg>
</a>
<a href="https://www.instagram.com/" target="_blank" class="soc-link">
<svg class="social-icon" width="24" height="24">
<use href="./images/icons.svg#icon-Instagram"></use>
</svg>
<a href="https://www.youtube.com/" target="_blank" class="soc-link">
<svg class="social-icon" width="24" height="24">
<use href="./images/icons.svg#icon-Youtube"></use>
</svg>
</a>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy;2022 The Watch Spot. All rights reserved.</p>
<div class="footer-legal">
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
</div>
</div>
</footer>
</footer>








1 change: 1 addition & 0 deletions src/partials/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Empty file added src/partials/hero.html
Empty file.
28 changes: 0 additions & 28 deletions src/sass/_example.scss

This file was deleted.

Loading