-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
237 lines (214 loc) · 10.9 KB
/
index.html
File metadata and controls
237 lines (214 loc) · 10.9 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Code the future.">
<meta name="author" content="Pranav Pradeep">
<meta name="keywords" content="HTML, CSS, Python, free, classes, programming, programmer, code, coding, coder, how to, Boston, Massachusetts, amherst, university, umass">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TECProject</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="index_style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bungee&display=swap" rel="stylesheet">
<link rel="icon" href="tecp-images/favicon.png">
</head>
<body>
<!--Header-->
<nav id="nav" class="fixed-top navbar navbar-expand-lg">
<div class="container p-2">
<table>
<tr>
<th>
<a id="shadow" class="navbar-brand" href="https://coderproject.tech/">The Everyday <br> Coder Project</a>
</th>
</tr>
<tr>
<td>
<a href="https://everydayproject.github.io/">
<i id="icon" class="fa fa-cloud" aria-hidden="true"></i>
<h6 class="tag">An Everyday Project Organization</h6>
</a>
</td>
</tr>
</table>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li id="nav" class="nav-item">
<a class="nav-link" href="https://coderproject.tech/schedule">Schedule</a>
</li>
<li id="nav" class="nav-item">
<a class="nav-link ml-5" href="https://coderproject.tech/resources">Resources</a>
</li>
<li id="nav" class="nav-item">
<a class="nav-link ml-5" href="https://coderproject.tech/donate">Donate</a>
</li>
</ul>
</div>
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="https://coderproject.tech/schedule">Schedule</a>
<a href="https://coderproject.tech/resources">Resources</a>
<a href="https://coderproject.tech/donate">Donate</a>
</div>
</div>
<span id="menu" class="fa fa-bars fa-2x" onclick="openNav()"></span>
</div>
</nav>
<!--Main-->
<main>
<section class="hero">
<img class="img-fluid" src="tecp-images/liquid.jpg" alt="" style="min-width: 1200px; width: 100%; height: 100vh">
<div id="main-scroll" class="hero-text">
<h1 class="fade font-change" style="text-shadow: 2px 2px white; animation-delay: 0.5s;">Welcome to the Everyday Coder Project!</h1>
<h5 class="typewriter font-change2">Code the future with us.</h5>
<a id="cursor" class="btn btn-main fade size-change" style="float:right; animation-delay: 3.3s;" href="https://coderproject.tech/signup">Sign Up</a>
</div>
</section>
</main>
<!--Programming Paths-->
<section class="pp-background py-5">
<div class="container">
<h2 class="section-heading py-2">Programming Paths</h2>
<div class="row py-4">
<div class="col-md-4">
<img src="tecp-images/webdev.svg" alt="" style="width: 18rem">
</div>
<div class="col-md-8">
<h2 class="sub">Web Development Path</h2>
<p class="details">From HTML and CSS to JavaScript and Bootstrap, we will explore the world of web development.</p>
<a id="cursor" class="btn btn-main mt-1 ppbtn" href="#">Learn more</a>
</div>
</div>
<div class="row py-5">
<div class="col-md-4 svg1">
<img src="tecp-images/python.svg" alt="" style="width: 20rem">
</div>
<div class="col-md-8">
<h2 class="sub mr-5 pr-5">Python Path</h2>
<p class="details">Python is the language of the future. <br> Join us in learning python and exploring the worlds of machine learning and artificial intelligence.</p>
<a id="cursor" class="btn btn-main mt-1 ppbtn" href="#">Learn more</a>
</div>
<div class="col-md-4 svg2">
<img src="tecp-images/python.svg" alt="" style="width: 20rem">
</div>
</div>
</div>
</section>
<!--Team
<section class="team-background py-5">
<div class="container">
<h2 class="section-heading-team">The Team</h2>
<div class="row my-3">
<div class="col-md-4 mt-3">
<article class="shadow p-0" style="background-color: whitesmoke">
<img class="img-fluid" alt="" src="tecp-images/me.JPG">
<div class="sub p-3">
<h3>Pranav Pradeep</h3>
<p>Founder of TECP. <br> //</p>
</div>
<div class="team-social-links p-2">
<a href="#"><i class="fa fa-instagram px-3"></i></a>
<a href="#"><i class="fa fa-twitter px-3"></i></a>
<a href="#"><i class="fa fa-facebook px-3"></i></a>
</div>
</article>
</div>
<div class="col-md-4 mt-3">
<article class="shadow p-0" style="background-color: whitesmoke">
<img class="img-fluid" alt="" src="tecp-images/propic.png">
<div class="sub p-3">
<h3>//</h3>
<p>//</p> <br>
</div>
<div class="team-social-links p-2">
<a href="#"><i class="fa fa-instagram px-3"></i></a>
<a href="#"><i class="fa fa-twitter px-3"></i></a>
<a href="#"><i class="fa fa-facebook px-3"></i></a>
</div>
</article>
</div>
<div class="col-md-4 mt-3">
<article class="shadow p-0" style="background-color: whitesmoke">
<img class="img-fluid" alt="" src="tecp-images/propic.png">
<div class="sub p-3">
<h3>//</h3>
<p>//</p> <br>
</div>
<div class="team-social-links p-2">
<a href="#"><i class="fa fa-instagram px-3"></i></a>
<a href="#"><i class="fa fa-twitter px-3"></i></a>
<a href="#"><i class="fa fa-facebook px-3"></i></a>
</div>
</article>
</div>
</div>
</div>
</section>
Sign Up
<section class="signup-background py-5">
<div class="container">
<h2>Join Us!</h2>
<div class="row py-2">
<div>
<button id="cursor" class="btn btn-main end mb-2" onclick="typeWriter()">Read the Letter</button>
<p id="letter" style="text-indent: 3rem"></p>
<a id="cursor" class="btn btn-main-end end mt-1" href="https://coderproject.tech/signup">Sign Up</a>
</div>
</div>
</div>
</section>-->
<!--Footer-->
<footer>
<nav class="navbar navbar-light mt-3">
<a href="https://coderproject.tech/">Home</a>
<a href="https://coderproject.tech/signup">Sign Up</a>
<a href="https://coderproject.tech/schedule">Schedule</a>
<a href="https://coderproject.tech/resources">Resources</a>
<a href="https://coderproject.tech/donate">Donate</a>
</nav>
<nav>
<div class="attribution text-center pt-1 pb-3">
<span>The Everyday Project Foundation © 2020.</span>
<span>Background vector created by s.salvador - www.freepik.com</span>
</div>
</nav>
</footer>
<!--JS-->
<script>
function openNav() {
document.getElementById("myNav").style.width = "100%";
}
function closeNav() {
document.getElementById("myNav").style.width = "0%";
}
var i = 0;
var txt = "As college students, we have lived the sweet journey of trying to learn something new as a kid and steadily turning it into the hand-made reality of today. As we direct this passion to other outlets, we found that teaching programming to absolute beginners for free is the project we've been looking for. This is The Everyday Coder Project, where our endless interest of coding will be passed on to the future of programming. Code the future with us-- Pranav Pradeep, Founder";
var speed = 40;
function typeWriter() {
if (i < txt.length) {
document.getElementById("letter").innerHTML += txt.charAt(i);
i++;
setTimeout(typeWriter, speed);
}
}
</script>
<script>
window.onscroll = function() {
handleScroll();
}
function handleScroll() {
if (document.documentElement.scrollTop > 35) {
document.getElementsByClassName("navbar").style.backgroundColor = "white";
} else {
document.getElementsByClassName("navbar").style.backgroundColor = "red";
}
}
</script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</body>
</html>