-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
238 lines (217 loc) · 7.73 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
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
238
<!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" />
<!--* The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!--* Title -->
<title>10+ Vanilla Javascript Projects by Timonwa.</title>
<!-- * SEO Meta Tags -->
<!-- Primary Meta Tags -->
<meta name="title" content="10+ Vanilla Javascript Projects by Timonwa." />
<meta
name="description"
content="A collection of javascript projects from the javascript project series written on Timonwa's Notes Blog.'"
/>
<!-- Open Graph / Facebook Meta Tags -->
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://javascript-project-series.vercel.app"
/>
<meta
property="og:title"
content="10+ Vanilla Javascript Projects by Timonwa."
/>
<meta
property="og:description"
content="A collection of javascript projects from the javascript project series written on Timonwa's Notes Blog.'"
/>
<meta
property="og:image"
content="https://javascript-project-series.vercel.app/assets/seo-image.png"
/>
<!-- Twitter Meta Tags -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://javascript-project-series.vercel.app"
/>
<meta
property="twitter:title"
content="10+ Vanilla Javascript Projects by Timonwa."
/>
<meta
property="twitter:description"
content="A collection of javascript projects from the javascript project series written on Timonwa's Notes Blog.'"
/>
<meta
property="twitter:image"
content="https://javascript-project-series.vercel.app/assets/seo-image.png"
/>
<!--* Icons -->
<!-- Google Icons -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined"
/>
<!--* CSS -->
<!-- Main CSS -->
<link rel="stylesheet" href="/main-style.css" />
</head>
<body>
<!--* container/body wrapper for every content in the body -->
<div class="flex">
<!-- nav bar -->
<nav>
<div class="nav-cntr">
<!-- logo -->
<div class="logo">
<p><a href="/">HOME</a></p>
</div>
<!-- nav toggle -->
<div class="menu">
<p>Projects</p>
</div>
<!-- nav links -->
<ul class="nav-links">
<li><a href="/01-accordion/index.html">Accordions</a></li>
<li><a href="/02-color-flipper/index.html">Color Flipper</a></li>
<li><a href="/03-image-slider/index.html">Image Slider</a></li>
</ul>
</div>
</nav>
<div class="nav-space"></div>
<!-- banner -->
<header>
<img
src="/assets/seo-image.png"
alt="Javascript Projects Article series on Timonwa's Notes."
/>
</header>
<!-- body -->
<main>
<!-- description -->
<section class="description">
<h1 class="heading">
Beginners Javascript Projects - Article series on Timonwa's Notes.
</h1>
<h2>10+ mini projects to boost your Javascript skills.</h2>
<p>
This repository contains all the codes to each Javascript project
from my Javascript project article series on my
<a href="https://blog.timonwa.com" target="_blank">blog</a>.
</p>
<p>
The
<a
href="https://blog.timonwa.com/series/javascript-projects"
target="_blank"
>Javascript Projects Series</a
>
is a collection of written tutorials where I will be picking
javascript projects one at a time, giving step by step tutorials on
how to build them from scratch with ease.
</p>
<p>
As I publish each new project article, you will find the
corresponding source codes here. The code of each projects are
contained in folders with the corresponding names of the Javascript
projects. You can also find the direct links to the folders below
along with the live links to view the code in action.
</p>
<p>
Feel free to fork this
<a
href="https://github.com/Timonwa/javascript-project-series"
target="_blank"
>Repo</a
>
and use the codes for learning, practicing and building your own
unique projects. And please give this a
<a
href="https://github.com/Timonwa/javascript-project-series"
target="_blank"
>Star</a
>
also, it would mean a lot to me.
</p>
</section>
<!-- the projects -->
<section id="projects">
<h2>The Projects</h2>
<div>
<p>
The following is the list of javascript projects included in the
repository. You can click on them to go straight to that section.
</p>
<ol>
<li><a href="#accordions">Accordions</a></li>
<li><a href="#color-flipper">Color Flipper</a></li>
<li><a href="#image-slider">Image Slider</a></li>
</ol>
</div>
<div class="projects">
<h3 id="accordions">01 Accordions</h3>
<p>
You can view the
<a href="/01-accordion/index.html">demo here</a>, read the
<a
href="https://blog.timonwa.com/3-simple-ways-to-build-an-accordion"
target="_blank"
>article here</a
>, and view the
<a
href="https://github.com/Timonwa/javascript-project-series/tree/main/01-accordion"
target="_blank"
>code here</a
>.
</p>
<h3 id="accordions">02 Color Flipper</h3>
<p>
You can view the
<a href="/02-color-flipper/index.html">demo here</a>, read the
<a
href="https://blog.timonwa.com/how-to-build-a-random-color-flipper-with-vallina-javascript"
target="_blank"
>article here</a
>, and view the
<a
href="https://github.com/Timonwa/javascript-project-series/tree/main/02-color-flipper"
target="_blank"
>code here</a
>.
</p>
<h3 id="image-slider">03 Image Slider</h3>
<p>
You can view the
<a href="/03-image-slider/index.html">demo here</a>, read the
<a href="https://blog.timonwa.com/how-to-create-an-image-slider-using-css-and-javascript" target="_blank"
>article here</a
>, and view the
<a
href="https://github.com/Timonwa/javascript-project-series/tree/main/03-image-slider"
target="_blank"
>code here</a
>.
</p>
</div>
</section>
</main>
<footer>
<div class="wrapper">
<p class="attribution">
Created by
<a href="https://github.com/timonwa" target="_blank">Timonwa</a> for
<a href="https://blog.timonwa.com" target="_blank"
>Timonwa's Blogs.</a
>
</p>
</div>
</footer>
</div>
<!--* JavaScripts -->
<script src="/main-script.js"></script>
</body>
</html>