-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (110 loc) · 4.91 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Hunger, Over Easy</title>
<link rel="icon" href="imgs/hoeLogo.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/landingPage.css">
<link rel="stylesheet" href="css/footer.css">
</head>
<body>
<nav class="navbar">
<div class="container-fluid slideDown">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<img id="menuBtn" src="imgs/menu.svg" alt="">
</button>
<a class="navbar-brand" href="index.html"> <img class="logo" src="imgs/hoeLogo.png" alt="Logo"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a class="navButton" href="aboutPage.html">About</a></li>
<li><a class="navButton" href="eventsPage.html">Events</a></li>
<li><a class="navButton" href="supportPage.html">Support</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!--figure out margin in index.css in the page panel class-->
<div class="container-fluid pagePanel homePageMainPanel">
<img id="pan" class="responsive slideUp" src="imgs/panResize.svg" alt="">
<div class="leftCol">
</div>
<div class="rightCol">
<div class="topFormat slideUp">
<h1 class="title">Hunger,<br>Over Easy</h1>
<a class="learnMore" href="#aboutUs">Learn More</a>
</div>
</div>
</div>
<div class="pagePanel aboutUs" id="aboutUs">
<h1>About Us</h1>
<div>
Hunger, Over Easy is a five hour cooking celebration that
showcases a variety of activities including a "Chopped" style
cooking competition, educational booths about nutrition,
food challenges, in addition to service booths where we help
make food for the homeless.
</div>
<br>
<div>
All of our proceeds are donated to Meals on Wheels America,
the oldest and largest national organization federally supported
to meet the nutritional and social needs of seniors. They
support more than 5,000 community-based senior nutrition
programs across the United States.
</div>
</div>
<footer>
<div class="footer">
<div class="left column">
<img class="logo footerLogo inline footerMid" src="imgs/hoeLogo.png" alt="Logo">
</div>
<div class="middle column">
<div class="smaller">
<div>
© 2020-2021 University of California, Irvine - Circle K - All Rights Reserved.
</div>
<div>
Icons made by <a class="flatIcon" href="https://www.flaticon.com">FlatIcon</a>
</div>
</div>
<div class="ckiLogos inline">
<a href="http://www.cnhcirclek.org/divisions/citrus/">
<img src="imgs/ckiLogo.svg" alt="" id="ckiLogo">
</a>
<a href="http://www.cnhcirclek.org/">
<img src="imgs/cal-nev-ha.svg" alt="" id="calnevha">
</a>
<a href="https://www.circlek.org/">
<img src="imgs/citrusDivision.svg" alt="" id="citrusDiv">
</a>
</div>
</div>
<div class="right column">
<div>
Contact Us
</div>
<div>
<a href="mailto:[email protected]">
<img class="socialMediaFooter" src="imgs/email.svg" alt="">
</a>
<a href="https://www.instagram.com/hungerovereasy/">
<img class="socialMediaFooter" src="imgs/instagram.svg" alt="">
</a>
<a href="https://www.youtube.com/channel/UCrRE0Uhqm0b_KHn_5DrkU-A/featured">
<img class="socialMediaFooter" src="imgs/youtube.svg" alt="">
</a>
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
<script src="js/landingPage.js"></script>
</body>
</html>