-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>ODC - NODEJS Bootcamp</title>
</head>
<body>
<header>
Orange Digital Center - NodeJS FullStack Bootcamp 2024 Projects
</header>
<main>
<div class="vanilla">
<h3>Vanilla JavaScript Projects</h3>
<a href="./guessing-game/index.html">Guessing Game </a>
<a href="./ping-pong/index.html">Ping Pong </a>
<a href="./counter-bg/index.html">Counter & Dynamic Background Color</a>
<a href="./weather-app/index.html">Weather App </a>
<a href="./notes-app/index.html">Notes App </a>
<a href="./music-app/index.html">Music App</a>
<a href="./digital-clock/index.html">Digital Clock</a>
<a href="./pomodoro-timer/index.html">Pomodoro Timer</a>
<a href="./tic-tac-toe/index.html">Tic Tac Toe</a>
<a href="./caesar-cipher/index.html">Ceaser Cipher</a>
<a href="./mario/index.html">Mario Block</a>
<a href="./typing-speed-test/index.html">Type Speed Test</a>
</div>
</main>
<footer class="footer">
©
<a href="https://www.github.com/timtjoe" target="_blank"
>Timothy T. Joe</a
>
</footer>
</body>
</html>