-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
66 lines (61 loc) · 3.3 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
<!DOCTYPE html>
<html lang="en" ng-app="myStore">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- css -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style/style.css">
<!-- fonts -->
<link href="//fonts.googleapis.com/css?family=Coiny|Roboto|Cabin" rel="stylesheet">
<!-- Javascript -->
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.sticky/1.0.4/jquery.sticky.js" type="text/javascript"></script>
<script src="app.js" type = "text/javascript"></script>
<script src="controllers/myStoreController.js" type = "text/javascript"></script>
<script src="modules/productdisplay.js" type = "text/javascript"></script>
<script src="modules/headerfooter.js" type = "text/javascript"></script>
<script src="modules/filter.js" type = "text/javascript"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.0/ui-bootstrap.js" type="text/javascript"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.0/ui-bootstrap-tpls.js" type="text/javascript"></script>
<title>Cloud Whale: A Crafts Store</title>
</head>
<body ng-controller="myStoreController as controller">
<div class="maindiv col-sm-10 col-sm-offset-1 container">
<div class="siteheader" siteheader></div>
<div class="content_div">
<div class="about_page container col-xs-12">
<h1>Cloud Whale Crafts</h1>
<section class="aboutsection container col-xs-12">
<div class="col-sm-6">
<p>Straight to you from Chicago, IL is Cloud Whale Crafts, a store
dedicated to providing you with cute, unique crafts. Our products
are all lovingly handcrafted using only the finest materials. Our
patterns and designs are unique and make great gifts.</p>
<p>We also take custom commissions! Do you want a custom plushie of
your favorite, obscure animal? Have you always wanted a pink dragon
unicorn zebra but have been unable to find one? Contact us today
to get a quote for your very own custom design!</p>
</div>
<div class="col-sm-6">
<img src="images/plush_1.png" alt="Garo-garo plushie">
</div>
<div class="col-sm-6">
<img src="images/plush_2.png" alt="Eevee plushie">
</div>
<div class="col-sm-6">
<p>We ship anywhere in the continental US. Our products are carefully
packaged as to prevent damage. All of our crafts are sturdy and can stand
up to roughhousing, so they are perfect for children age 5 and up.</p>
<p>Please let us know if you have any questions and feel free to leave
a review on any products you have purchased. We want to make sure all
of our customers are happy with their purchases, so we appreciate any suggestions.</p>
</div>
</section>
</div>
</div>
</div>
</body>
</html>