-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (111 loc) · 4.2 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
<!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" />
<link href="style.css" rel="stylesheet" />
<title>Project Kayamanan</title>
</head>
<body>
<!-- Header & Hero -->
<div class="top">
<!-- Hamburger icon button for small screens -->
<header class="navBar-container">
<ul class="navBar">
<img src="img/logo.png" />
<div class="hamburger" id="hamburgerIcon">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<div class="headerLinks">
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="ourprogram.html">OUR PROGRAMS</a></li>
<li><a href="get_involved.html">GET INVOLVED</a></li>
<li><a href="signup.html"><button >SIGN UP</button></a></li>
</div>
</ul>
</header>
</div>
<div class="hero">
<div class="heroslides">
<div class="heroContent" id="hero-1">
<div class="hero1Text">
<h1>WELCOME TO PROJECT KAYAMANAN</h1>
<p>
A free online peer financial education program for
Filipino public high school students
</p>
<a href="about.html"><button>Learn More</button></a>
</div>
<img src="img\spark.png"/>
</div>
<div class="heroContent" id="hero-2">
<img class="adjust" src="img/2nd-card.png"/>
<div class="hero2Text">
<h1>WHY PROJECT KAYAMANAN?</h1>
<p>
PK is a fun, creative, and reward based personal finance program.
It is also the first online peer financial education program for high school students.
</p>
<!-- Is this necessary? <a href="#signUp"><button >Connect With Us</button></a> -->
</div>
</div>
<div class="heroContent" id="hero-3">
<img class="adjust" src="img/3rd-card.png"/>
<div class="hero3Text">
<h1>COME JOIN <br>PROJECT KAYAMANAN</h1>
<p>
You can join whether you are a donor, participant (in high school),
or simply want to let more people know about PK.
</p>
</div>
</div>
</div>
<a href="#hero-1" class="heronav"></a>
<a href="#hero-2" class="heronav"></a>
<a href="#hero-3" class="heronav"></a>
</div>
</div>
<footer>
<div class="footerContainer">
<div class="logoInfoFooter">
<img src="img/logo.png" class="footerLogo" />
<p>
PK 2.0 - A free online peer financial education program for Filipino
public high school students
</p>
</div>
<div class="footerLinks">
<ul>
<li><a href="#top">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="ourprogram.html">Our Programs</a></li>
<li><a href="getInvolved.html">Get Involved</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</div>
<div class="socials">
<p>Connect with us on:</p>
<ul>
<li>
<a href="https://www.facebook.com/projectkayamanan"><img src="img/social/FB.png" /></a>
</li>
<li>
<a href="https://www.instagram.com/projectkayamanan/"><img src="img/social/IS.png" /></a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCQoPYkHJS2evGZb4xKzzpBQ"><img src="img/social/YT.png" /></a>
</li>
<li>
<a href="https://www.tiktok.com/@projectkayamanan"><img src="img/social/TT.png" /></a>
</li>
</ul>
</div>
</div>
</footer>
<script type="module" src="script.js"></script>
</body>
</html>