blob: 5fdb5556f8ff69de6fd8c2a95c0c0f2846ff2141 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sneed's Feed and Seed - Store</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href=style.css>
<link rel="shortcut icon" href="assets/Iconography/favicon.png" type="image/png">
</head>
<body>
<div id=wrapper>
<header>
<img width=91 alt="The logo of Sneed's Feed and Seed. It has a red hat with the title of the company on it." src="assets/Iconography/logo-small.png">
<div>
<h1>Sneed's Feed and Seed</h1>
<p id=headercaption>Formerly Chuck's</p>
</div>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="store.html">Store</a></li>
<li><a href="legal.html">Legal</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<main>
<h1>Seeds</h1>
<div class=big-shop-box>
<!--Items-->
</div>
</main>
<footer>
<p>Copyleft <span class=copyleft>©</span> - <a href=https://creativecommons.org/licenses/by-sa/4.0/>CC-BY-SA 4.0</a></p>
<small><a href=mailto:msglm@techchud.xyz>msglm</a></small>
<small><i>Last Updated April 28th 2022</i></small>
</footer>
</div>
</body>
</html>
|