-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 2.41 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 2.41 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
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<!--META TAGS-->
<meta charset="UTF-8">
<meta name="description" content="A social entrepreneuring venture that teaches skills the less fortunate can use to run their own businesses.">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="ITWD">
<title>Precious Snacks | High Quality Snacks</title>
<!--CSS-->
<link rel="stylesheet" href="src/style/style.css">
<!--navbar JS-->
<script src="src\js\nav.js"></script>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,500|Satisfy" rel="stylesheet">
<!--Favicons-->
<link rel="apple-touch-icon" sizes="180x180" href="/src/imgs/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/src/imgs/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/src/imgs/favicons/favicon-16x16.png">
<link rel="manifest" href="/src/imgs/favicons/manifest.json">
<link rel="shortcut icon" href="/src/imgs/favicons/favicon.ico">
<meta name="msapplication-config" content="/src/imgs/favicons/browserconfig.xml">
<meta name="theme-color" content="#789f73">
</head>
<body>
<div class="not-footer">
<nav class="navBar" id="navBar">
<a href="./" class="logo">
<img src="src/imgs/logo.svg" alt="logo" class="logo-image">
<p class="logo-text">Precious Snacks</p>
</a>
<a href="./contact.html" class="navtext">Contact</a>
<a href="./products.html" class="navtext">Products</a>
<a href="./about.html" class="navtext">About</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
</nav>
<div class="main">
<div class="main-heading">
<h1>Precious Snacks</h1>
</div>
<div class="main-description">
<p>A social entrepreneurship venture that provides high quality snacks while helping generate income for families within the community that are in need.</p>
</div>
</div>
</div>
<div class="footer flex">
<div class="left">
<p>© Copyright 2017 Precious Snacks</p>
</div>
<div class="right">
<p>Designed and Developed by <a href="https://itwd.us/2017">ITWD 2017</a></p>
</div>
</div>
</body>
</html>