-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
114 lines (114 loc) · 4.15 KB
/
about.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="images/ico.svg" />
<meta charset="utf-8" />
<title>Fake Meat Butcher Store</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.css" />
<script src="products.js"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<img src="images/logo.svg" alt="My store logo" />
<h1 id="name">Fake Meat Butcher</h1>
</header>
<nav>
<ul>
<li>
<a href="./index.html" id="home"><i class="material-icons">home</i></a>
</li>
<li>
<a href="./cart.html" class="iconNav"><i class="material-icons">shopping_cart</i></a>
</li>
<li class="menu_signUp desktop"><a href="./contact.html" class="iconNav">Contact Us</a></li>
<li class="menu_signUp mobile">
<a href="./contact.html" class="iconNav"><i class="material-icons">email</i></a>
</li>
</ul>
</nav>
<main class="mainOther">
<div id="about">
<p>Page created for the WEB222 <br />Assignment 5 @ Seneca College</p>
<h4>Source of materials used:</h4>
<p>
<a class="otherLink" href="https://fontawesome.com/">Fonts Awesome</a> for social media
icons.
</p>
<p>
<a class="otherLink" href="https://fonts.google.com/">Google fonts</a> for icons and logo.
</p>
<p>No templates nor libraries used.</p>
<p>Cart is simulated by the use of Local Storage</p>
<p>Shipping is calculated based on weight of car.</p>
<p>Images by <a class="otherLink" href="https://unsplash.com/">Unsplash</a>.</p>
<p>Logo design by myself.</p>
<p>
Footer subscribe form by <a class="otherLink" href="https://formspree.io/">Formspree</a>.
</p>
<br />
<p>Maickel Siqueira</p>
</div>
</main>
<footer>
<ul>
<li>
<a href="./signup.html" class="iconNav"
><i class="material-icons md-18 icon">person_add</i></a
>
</li>
<li class="desktop"><a id="footerText" href="./about.html">About</a></li>
<li class="mobile">
<a href="./about.html"><span class="material-icons icon md-18">help_outline</span></a>
</li>
<li>
<a href="https://www.twitter.com/fakemeatbutcher"
><i class="fa fa-twitter icon" aria-hidden="true"></i
></a>
</li>
<li>
<a href="https://www.instagram.com/fakemeatbutcher"
><i class="fa fa-instagram icon" aria-hidden="true"></i
></a>
</li>
<li>
<a href="https://www.facebook.com/fakemeatbutcher"
><i class="fa fa-facebook-square icon" aria-hidden="true"></i
></a>
</li>
<li class="desktop">
<form action="https://formspree.io/xbjzwwjn" method="POST" class="subscribeForm">
<input
type="email"
name="_replyto"
placeholder="Email to subscribe"
class="subscribeField"
/>
<input type="submit" value="Subscribe" class="subscribeButton" />
</form>
</li>
<li class="mobile">
<form action="https://formspree.io/xbjzwwjn" method="POST" class="subscribeForm">
<input
type="email"
name="_replyto"
placeholder="Email to subscribe"
class="subscribeField"
required
/>
<button type="submit" value="Subscribe" class="subscribeButton">
<span class="material-icons md-18">
mark_email_read
</span>
</button>
</form>
</li>
</ul>
</footer>
</body>
</html>