-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-us.html
131 lines (125 loc) · 4.34 KB
/
about-us.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<title>Weightlifting Journal</title>
<link rel="shortcut icon" type="image/png" href="assets/img/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/index.css" />
</head>
<body>
<!-- Content -->
<header>
<div class="nav-with-logo">
<img
class="normal-logo"
src="assets/img/wj-logo-black.png"
alt="Weightlifting Journal logo"
/>
<p class="mobile-logo">WJ</p>
<nav>
<a href="index.html">Home</a>
<a href="#">Exercises</a>
<a href="about-us.html">About Us</a>
<a class="login-btn" href="https://front-end-seven-blond.now.sh/"
>Login</a
>
</nav>
</div>
</header>
<section>
<div class="statement-pieces">
<div class="about-us-paragraphs">
<img src="assets/img/run-1.jpg" alt="man running" />
<h2>Our Mission</h2>
<p>
To produce the best and most convenient app that tracks your
progress in order to help individuals achieve and preserve a way of
life and a mindset unique to the roots of muscle build and weight
loss.
</p>
</div>
<div class="about-us-paragraphs">
<img src="assets/img/run-2.jpg" alt="woman running" />
<h2>Our promise</h2>
<p>
From the first moment you sign up to the sharing workouts with
friends and family or your competitors, we do more to make sure our
appliction exceeds expectations. Our process let us combine
exclusive technologies with advanced programing for a tracking
experience that's uncompromising, dynamic, and best of all, easy to
use. <br />
One of the ways we manage to exceed our users expectations is by
listening to feedback you as a user provide.
</p>
</div>
</div>
</section>
<section>
<div class="team-members">
<h2>Meet the Team</h2>
<div class="project-lead">
<h3>Project Lead</h3>
<a style="text-decoration: none;" href="https://github.com/Jeffreyo3">
<img src="assets/img/pic-1.png" alt="Jeffery Orndorff picture" />
<p>Jeffery Orndorff</p>
</a>
</div>
<div class="helpers">
<div class="web-ui-developer">
<h3>Web UI Developer</h3>
<a
style="text-decoration: none;"
href="https://github.com/myhousegotroaches"
>
<img src="assets/img/pic-2.png" alt="Josue Rodriguez picture" />
<p>Josue Rodriguez</p>
</a>
</div>
<div class="web-react-i">
<h3>Web React I</h3>
<a
style="text-decoration: none;"
href="https://github.com/robertstepanov"
>
<img src="assets/img/pic-3.png" alt="Robert Stepanov picture" />
<p>Robert Stepanov</p>
</a>
</div>
<div class="web-react-ii">
<h3>Web React II</h3>
<a style="text-decoration: none;" href="https://github.com/Wais-A">
<img src="assets/img/pic-4.png" alt="Wais Almakaleh picture" />
<p>Wais Almakaleh</p>
</a>
</div>
<div class="web-react-ii">
<h3>Web React II</h3>
<a
style="text-decoration: none;"
href="https://github.com/trodriguez89"
>
<img src="assets/img/pic-5.png" alt="Thomas Rodriguez picture" />
<p>Thomas Rodriguez</p>
</a>
</div>
<div class="back-end-developer">
<h3>Backend Developer</h3>
<a
style="text-decoration: none;"
href="https://github.com/ChristopherHernandezW22"
>
<img
src="assets/img/pic-6.png"
alt="Christopher Hernandez picture"
/>
<p>Christopher Hernandez</p>
</a>
</div>
</div>
</div>
</section>
<footer>
<p>MIT License © 2019 Weightlifting Journal Team - All rights reserved</p>
</footer>
</body>
</html>