-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (87 loc) · 3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Applications</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 0 auto;
background: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin: 10px 0;
}
.project {
background-color: #e8f4f8;
padding: 10px;
border-radius: 5px;
}
.project h3 {
margin: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>JavaScript Applications</h1>
<p>Welcome to my repository of JavaScript applications! This collection includes various mini-projects that I developed while studying JavaScript. Each project is designed to demonstrate different concepts and techniques in JavaScript programming.</p>
<h2>Projects</h2>
<p>Here are some of the projects included in this repository:</p>
<ul>
<li class="project">
<a href="counter program/index.html">
<h3>1. Counter program</h3>
</a>
<p>A simple program that increments and decrements a number using buttons.</p>
</li>
<li class="project">
<a href="Dice Roller/index.html">
<h3>2. Dice roller</h3>
</a>
<p>An application that simulates rolling a dice, generating random dice values.</p>
</li>
<li class="project">
<a href="Number Guessing/index.html">
<h3>3. Number guessing</h3>
</a>
<p>A game where the user guesses a number and receives feedback on their guess.</p>
</li>
<li class="project">
<a href="Temperature conversion/index.html">
<h3>4. Temperature conversion</h3>
</a>
<p>A tool to convert temperatures between different units (Celsius, Fahrenheit).</p>
</li>
<li class="project">
<a href="Calculator/index.html">
<h3>5. Calculator</h3>
</a>
<p>A basic calculator that performs arithmetic operations such as addition, subtraction, multiplication, and division.</p>
</li>
<li class="project">
<a href="Task list/index.html">
<h3>5. Task List</h3>
</a>
<p>An application to add, delete, and manage tasks, functioning as a simple to-do list. It uses local storage to retain the tasks even after refreshing or reopening the browser.</p>
</li>
</ul>
</div>
</body>
</html>