-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
98 lines (90 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Anywhere Fitness</title>
<link
href="https://fonts.googleapis.com/css?family=Montserrat|Quicksand&display=swap"
rel="stylesheet"
/>
<link href="css/index.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
</html>
<header>
<div id="navBar">
<h1>Anytime Fitness</h1>
<nav>
<a href="index.html">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#contact">Contact</a>
<a href="https://anytimefit.netlify.com/">Sign In</a>
</nav>
</div>
</header>
<section class="topSection">
<!-- person working out img -->
<img class="workingOutImg" src="img/zumbaclass.jpg" alt="several people working out" />
</section>
<section class="aboutUs">
<h1>About Us</h1>
<p>
It's important to me that you're happy. See there, told you that would be easy. Maybe we got a few little happy bushes here, just covered with snow. That's what makes life fun. That you can make these decisions. That you can create the world that you want.
</p>
</section>
<section class="aboutRow">
<div class="dev">
<img src="img/about/Eunice-Baiden.jpg" alt="Eunice Baiden">
<h2>Eunice Baiden</h2>
<p class="aboutUnique">
Fullstack dev with experience in UX
</p>
</div>
<div class="dev">
<img src="img/about/john_thomas-florence.jpg" alt="John Thomas">
<h2>John Thomas</h2>
<p class="aboutUnique">
Age: 37<br>
Location: Virginia<br><br>
HTML/CSS
</p>
</div>
<div class="dev">
<img src="img/about/Damon_Bogich.jpg" alt="Damon Bogich">
<h2>Damon Bogich</h2>
<p class="aboutUnique">
Age: 26<br>
Location: Michigian<br><br>
Full stack web dev. Backend for this site.
</p>
</div>
</section>
<section class="aboutRow">
<div class="dev">
<img src="img/about/Charlie_DiFranco.png" alt="Charlie DiFranco">
<h2>Charlie DiFranco</h2>
<p class="aboutUnique">
Age: 26<br>
Location: Chicago<br><br>
Front-end developer
</p>
</div>
<div class="dev">
<img src="img/about/man-head-profile-face-preview.jpg" alt="man's face from the side">
<h2>Lastname Firstname, Sr</h2>
<p>
We can fix anything. Only God can make a tree - but you can paint one. That's why I paint - because I can create the kind of world I want - and I can make this world as happy as I want it. Nothing wrong with washing your brush.
</p>
</div>
<div class="dev">
<img src="img/about/Face_female_a.jpg" alt="woman smiling">
<h2>Lastname Firstname, Sr</h2>
<p>
Isn't that fantastic that you can create an almighty tree that fast? Just a little indication. Everything's not great in life, but we can still find beauty in it. I will take some magic white, and a little bit of Vandyke brown and a little touch of yellow.
</p>
</div>
</section>
<footer>
<p>© Anytime Fitness 2020</p>
</footer>