-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
95 lines (90 loc) · 3.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foodbrain</title>
<!-- FontAwesome CDN Link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
/>
<link id="theme" rel="stylesheet" type="text/css" href="css/styleLight.css" />
<link id="theme" rel="stylesheet" type="text/css" href="css/about.css" />
<link id="favicon" rel="shortcut icon" href="images/logoLightMode.png" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.js"
integrity="sha512-n/4gHW3atM3QqRcbCn6ewmpxcLAHGaDjpEBu4xZd47N0W2oQ+6q7oc3PXstrJYXcbNU1OHdQ1T7pAP+gi5Yu8g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="javascript/stylesheet.js" defer></script>
</head>
<body id="home-page">
<!-- Navigation Menu-->
<header>
<nav>
<div class="navbar">
<!-- <div class= "navlogo"><img src="images/logoTransparent.png" alt="Foodbrain Logo"/></div> -->
<!-- The Logo Name is temporary cuz its real hard to size the freaking logo image in a nav bar -->
<div class="logo">
<img src="images/logoTheme.png" alt="Foodbrain Logo" style="width: 50px" id="brain"/>
<a href="index.html">Foodbrain</a>
</div>
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="mealPlanner.html">Meal Planner</a></li>
<li><a href="about.html">About Us</a></li>
<div class="cancel-btn"><i class="fas fa-times"></i></div>
</ul>
<div class="icons">
<button type="button" id="login"><i class="fas fa-sign-in-alt"></i></button>
<button type="button" id="darkmode"><i class="fas fa-moon"></i></button>
</div>
</div>
<div class="menu-btn"><i class="fas fa-bars"></i></div>
</nav>
</header>
<main>
<div id="blankrefer"></div>
<!-- Team Roles -->
<div class="about-section">
<h1>About Us Page</h1>
<p>Some text about who we are and what we do.</p>
</div>
<h2 id="ourteamtext">Our Team</h2>
<div class="row">
<div class="column">
<div class="card">
<img
src="images/team/richard.jpg"
class="teamphoto"
alt="Richard"
/>
<div class="container">
<h2 class="names">Richard Perez Jr.</h2>
<p class="title">PROJECT LEAD</p>
<p>Scholars' Academy</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
</div>
<div class="mission-section">
<h1>Our Mission</h1>
</div>
<div class="missionstmt">
<p>
Here at FoodBrain, we strive to create a resource that allows easy
access to materials to aid in weight loss and making healthy routines.
</p>
</div>
</main>
<!-- Footer Section -->
<footer>
<div class="text">
<span> ©2022 Foodbrain. All rights reserved.</span>
</div>
</footer>
</body>
</html>