-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-us.php
More file actions
executable file
·82 lines (62 loc) · 3.3 KB
/
about-us.php
File metadata and controls
executable file
·82 lines (62 loc) · 3.3 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
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
<?php
$PageTitle="Sockscribe Me - Awesome Socks Delivered to Your Door Monthly";
$page = "About-Sockscribe-Me";
function customPageHeader(){?>
<!--Arbitrary HTML Tags-->
<?php }
include_once('header.php');
?>
<!-- begin page content -->
<div class="container">
<div class="row">
<h1>About Us <h1><p class="lead">Meet the Feet Behind the Socks</p>
</div>
<div class="content">
<div class="row">
<article class="col-md-8">
<h2>Who we are</h2>
<div class="post-content">
<span class="col-md-4">
<img src="./images/photos/two-feet-linked.png" class="img-responsive" alt="Two fun socks linked together"></img>
</span>
<p>
Many moons ago, two best friends began a tradition (that did not consist of breaking open a piñata) to celebrate their friendship. Before the first Saturday of every month these friends would scour through department stores, specialty shops, and even pet boutiques to find a pair of socks worthy of gifting to the other. On Saturday morning, each friend would excitedly open their sock drawer only to discover a vibrant new pair of surprise socks awaiting their debut. Obligated to spread their tradition of bringing joy to others through socks, these friends birthed the idea for Sockscribe Me.
</p>
<p>
Eager to turn the Sockscribe Me brainchild into a functioning website, these friends enrolled in a <a href="https://generalassemb.ly/" target="_new">General Assembly</a> class where they learned front-end web design. A mere 16 classes later, after expending lots of blood, sweat, and hair (which could eventually lead to early-onset baldness) these friends created the very website you are viewing now, which allows people to share in the tradition of spreading joy to their friends, with socks.
</p>
</div>
</article>
<div class="col-md-4 about-us-progress">
<h2>Our Skills</h2>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="99" aria-valuemin="0" aria-valuemax="100" style="width: 95%;">
<h5>Sock Selection 95%</h5>
</div>
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="92" aria-valuemin="0" aria-valuemax="100" style="width: 92%;">
<h5>Sock Wearing 92%</h5>
</div>
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="72" aria-valuemin="0" aria-valuemax="100" style="width: 86%;">
<h5>Being Fun 86%</h5>
</div>
</div>
</div>
</div>
<div class="row">
<article>
<h2>About Sockscribe Me</h2>
<p>Each month we will send you a pair of incredible socks that will add some color to your life. You won’t know what design you’ll get, but that’s part of the SockScribe thrill. Remember the feeling of getting surprised with a cool gift when you were a kid? We’ll make that happen, monthly.</p>
<p>You have our word that you will always get awesome socks you will want to wear everyday. They’re perfect for casual and formal attire. What you do with all the new attention, ‘the SockScribe effect,’ is the only risk you’re taking.</p>
<p class="lead">The next chapter in your life starts here. Welcome to the family!</p>
</article>
</div>
</div>
</div>
<!-- end page content -->
<?php
include_once('footer.php');
?>