forked from utk09-NCL/html-css-js-mini-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (51 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GHW Beginner's Week</title>
<link rel="icon" href="./favicon.ico" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<nav class="navbar">
<menu>
<li>
<a target="_blank" href="/">Home</a>
</li>
<li>
<a target="_blank" href="/pomodoro/pomodoro.html">Pomodoro Timer</a>
</li>
<li>
<a target="_blank" href="/box-shadow/box-shadow.html">
Box Shadow Generator
</a>
</li>
<li>
<a target="_blank" href="/library/library.html">Library Page</a>
</li>
<li>
<a target="_blank" href="/expense-tracker/expense-tracker.html">
Expense Tracker
</a>
</li>
</menu>
</nav>
<div>
<h1 class="title">Welcome to GHW Beginner's Week</h1>
<p>Let's get started with the projects!</p>
</div>
<div>
<pre>
<code>
# [GHW Beginners Week] Learn HTML/CSS/JS by building mini projects
Create small, fun projects while learning how HTML structures content, CSS styles it, and JavaScript adds interactivity.
Project 1: Pomodoro Timer - A simple Pomodoro Timer that allows you to set a timer for 25 minutes and take a break for 5 minutes.
Project 2: CSS Box Shadow Generator - A simple tool that allows you to generate CSS box shadows.
Project 3: My Library Page - A simple library page that allows you to Fetch books from OpenLibrary API and add them to your library.
Project 4: Expense Tracker and Calculator - A simple expense tracker and calculator that allows you to add and remove expenses and calculate the total.
</code>
</pre>
</div>
</body>
</html>