-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstore.html
More file actions
45 lines (43 loc) · 1.94 KB
/
Copy pathstore.html
File metadata and controls
45 lines (43 loc) · 1.94 KB
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
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=4.0, user-scalable=yes" />
<meta name="google" content="notranslate" />
<title>Store — Bernoulli and Friends Co.</title>
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon.png">s
<meta name="description" content="Buy products from Bernoulli and Friends Co." />
<link rel="stylesheet" href="./css/site.css" />
</head>
<body>
<header class="bar">
<div class="wrap inner">
<a class="brand" href="index.html">Bernoulli and Friends Co.</a>
<nav class="nav" aria-label="primary">
<a href="products.html"><svg viewBox="0 0 24 24"><path d="M4 4h6v6H4zM14 4h6v6h-6zM4 14h6v6H4zM14 14h6v6h-6z"/></svg><span>products</span></a>
<a href="store.html"><svg viewBox="0 0 24 24"><path d="M6 7h12l-1.5 13H7.5L6 7z"/><path d="M9 7V5a3 3 0 1 1 6 0v2"/></svg><span>store</span></a>
<a href="press.html"><svg viewBox="0 0 24 24"><rect x="4" y="4" width="16" height="16" rx="2"/></svg><span>press</span></a>
<a href="aboutus.html"><svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><circle cx="12" cy="12" r="2"/><path d="M12 6v2M12 14v4"/></svg><span>about us</span></a>
</nav>
</div>
</header>
<main>
<section class="wrap section">
<h1 class="h1">store</h1>
<div class="products-grid" style="margin-top:1.2rem">
<article class="product-card">
<a href="cup-α.html" aria-label="cup-α product store page">
<img src="./img/cup-α-yuzu.webp" alt="cup-α in yuzu" />
<div class="meta"><span>cup-α</span><span class="badge">starting at $299</span></div>
</a>
</article>
</div>
</section>
</main>
<footer>
<div class="wrap">© <span id="year"></span> Bernoulli and Friends Co.</div>
</footer>
<script src="./js/site.js"></script>
</body>
</html>