forked from gShubham7/crowded-push-1335
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJoinTheMovement.html
More file actions
145 lines (138 loc) · 4.76 KB
/
JoinTheMovement.html
File metadata and controls
145 lines (138 loc) · 4.76 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JOIN THE MOVEMENT - SparkAmerica</title>
<link rel="stylesheet" href="Style/navbar.css" />
<link rel="stylesheet" href="Style/footer.css" />
<link rel="icon" href="SPARK-America.png" />
<link rel="stylesheet" href="./Style/JoinTheMovement.css" />
<script
src="https://kit.fontawesome.com/0abc29f6ea.js"
crossorigin="anonymous"
></script>
<script
src="https://kit.fontawesome.com/26fc26f383.js"
crossorigin="anonymous"
></script>
</head>
<body>
<nav class="position_index">
<!-- Import Navbar Data Append Here -->
</nav>
<div id="line"></div>
<center>
<div class="navbar_icon"></div>
</center>
<div id="partner_container">
<div id="first">
<h2 class="uabb_heading">
<span class="uabb-heading-text"
>ONE PERSON, ONE COMMUNITY, ONE CITY AT A TIME</span
>
</h2>
<div class="separator-parrent">
<div class="separator"></div>
</div>
<div class="uabb-subheading uabb-text-editor">
<p style="text-align: left">
SparkAmerica is focused on building Fit & Healthy leaders all
across the country. We do that by implementing programs in
SparkCities - urban and suburban localities whose business and civic
leaders have joined with us to create community and promote healthy
living. We are proud of the work being done and the partnerships
we've formed in each of these cities, and of the friendly
competition we see each year as they strive to be the healthiest
SparkCity in America!
</p>
</div>
</div>
<div id="second">
<h4 class="uabb-heading">
<span class="uabb-heading-text">JOIN SPARKAMERICA</span>
</h4>
<div class="separator-parrent">
<div class="separator"></div>
</div>
<p>
We have over
<strong>70 cities</strong> participating in SparkAmerica, click below
to sign up in your city today! You can join your city in three ways.
</p>
<ul>
<li>First, by being part of your #TeamCity.</li>
<li>
Second, by joining an existing business or organization in your
city.
</li>
<li>Third, by requesting to add your business or organization.</li>
</ul>
</div>
<div id="Button_">
<div id="icon">
<a href="registerPage.html">
<i class="fa-solid fa-square-check" id="Icon"></i>
<span>REGISTER HERE</span>
</a>
</div>
</div>
<div id="third">
<div>
<div>
<p>
If you want to learn more about how the SparkAmerica Fit City
Challenge works and also learn how you can connect to the tools
inside SparkAmerica,
<b>download our toolkit!</b>
</p>
</div>
</div>
</div>
<div>
<div>
<div id="Button_">
<a href="#">
<i class="fa-solid fa-screwdriver-wrench" id="Icon"></i>
<span>DOWNLOAD THE TOOLKIT (PDF)</span>
</a>
</div>
</div>
</div>
<div id="four">
<div>
<div>
<h4 class="uabb-heading">
<span>FIT CITY CHALLENGE</span>
</h4>
<div class="separator-parrent">
<div class="separator"></div>
</div>
<div>
<p>
The Fit City Challenge happens twice a year in the Spring and
Fall and is one of our most active challenges. Once you've
signed up fro SparkAmerica, you're automatically ready to
participate in the Fit City Challenge to help your city become
one of the healthiest in America. Check out the cities below to
see the latest leaderboards and get your organization and city
ready for the next Fit City Challenge.
</p>
</div>
</div>
</div>
</div>
</div>
<footer>
<!-- Import Footer Data Append Here -->
</footer>
</body>
</html>
<script type="module">
import { navbar, footer, navbar2 } from "./Componets/navbar_footer.js";
document.querySelector("nav").innerHTML = navbar();
document.querySelector("footer").innerHTML = footer();
document.querySelector(".navbar_icon").innerHTML = navbar2();
</script>
<script src="./Script/navbar_media.js"></script>