forked from uzFer/workItOut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
78 lines (68 loc) · 2.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- NAVIGATION BAR -->
<nav class="navbar">
<div class="navbar__container">
<a href="index.html" class="navbar__links" id="navbar__logo">WorkItOut</a>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="calculator.html" class="navbar__links" id="calculator-page">Calculator</a>
</li>
<li class="navbar__item">
<a href="workouts.html" class="navbar__links" id="workouts-page">Workouts</a>
</li>
<li class="navbar__item">
<a href="about.html" class="navbar__links" id="about-page">About Us</a>
</li>
</ul>
</div>
</nav>
<div class="about">
<div class="about__container">
<div class="about-us-heading">About the Founders
</div>
<div class="container-inner2" STYLE="animation: fade-in 1.5s ease, slide-left 1.2s ease">
<div class="image__container2">
<img class="image"
src="uzma.jpg"
alt="image of a young woman.">
</div>
<div class="image__container2">
<img class="image"
src="tanu.jpg"
alt="image of a young woman.">
</div>
</div>
<div class="container-inner2" STYLE="animation: fade-in 1.5s ease, slide-left 1.2s ease">
<div class="title__container">
<p STYLE="margin-bottom: 50px">Uzma Ferdous</p>
<div class="paragraph">
<p STYLE="font-family: courier; font-size: 16px; color: #d6d6d6">A second-year Computer Engineering student at UofT. In her free time, she likes to paint and sketch, workout, and play Pokemon.
Email: [email protected]</p>
</div>
</div>
<div class="filler"></div>
<div class="title__container">
<p STYLE="margin-bottom: 50px">Tanushanth Thavanenthiran</p>
<div class="paragraph">
<p STYLE="font-family: courier; font-size: 16px; color: #d6d6d6">A second-year Computer Engineering student at UofT. In his free time, he likes to play video games, workout, and play Pokemon with Uzma. Email: [email protected]</p>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>