-
Notifications
You must be signed in to change notification settings - Fork 1
/
products.html
39 lines (36 loc) · 1.54 KB
/
products.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My project - Products</title>
<link rel="stylesheet" href="../style.css">
</head>
<body data-barba="wrapper">
<main class="container" data-barba="container" data-barba-namespace="products">
<div class="nav"><a href="../index.html">back</a></div>
<div class="flex-container">
<div class="page-img-container">
<img src="../img/products.jpg">
</div>
<div class="left-container">
<div class="text-container">
<div class="row">
<h1>Photo by</h1>
</div>
<div class="row">
<h1><a href="https://unsplash.com/@malvestida?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Malvestida Magazine</a></h1>
</div>
<div class="row">
<h1>on <a href="https://unsplash.com/s/photos/product?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a></h1>
</div>
</div>
</div>
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.4.2/gsap.min.js"></script>
<script src="https://unpkg.com/@barba/core"></script>
<script src="https://cdn.jsdelivr.net/npm/@barba/core"></script>
<script src="./main.js"></script>
</body>
</html>