-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
89 lines (70 loc) · 2.11 KB
/
Copy pathabout.html
File metadata and controls
89 lines (70 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- ================= NAVBAR ================= -->
<nav class="navbar">
<div class="logo">⏳ Time Traveller</div>
<div class="menu">
<a href="index.html">Home</a>
<a href="timeline.html">Timeline</a>
<a href="favorites.html">Favorites</a>
<a href="about.html" class="active">About</a>
</div>
<!-- 🌙 Theme Button -->
<button onclick="toggleTheme()">🌙</button>
</nav>
<!-- ================= CONTENT ================= -->
<div class="container">
<h1>About This Project</h1>
<p>
The <strong>History Timeline Web App</strong> is a web-based application
that allows users to explore historical events by entering a specific year.
It fetches real-time data from the Wikipedia API and displays it in a
visually appealing timeline format.
</p>
<br>
<h2>🎯 Purpose</h2>
<p>
The main goal of this project is to demonstrate practical implementation
of JavaScript concepts such as API integration, DOM manipulation,
and dynamic rendering.
</p>
<br>
<h2>🚀 Features</h2>
<ul>
<li>Search historical events by year</li>
<li>Sort events alphabetically</li>
<li>Save favorite events</li>
<li>Dark/Light theme toggle</li>
<li>Optimized search using debouncing</li>
</ul>
<br>
<h2>🛠 Technologies Used</h2>
<ul>
<li>HTML, CSS, JavaScript</li>
<li>Wikipedia API</li>
<li>LocalStorage</li>
</ul>
<br>
<h2>👨💻 Developer</h2>
<p>
This project was developed as part of learning front-end web development
and building real-world JavaScript applications.
</p>
</div>
<!-- ✅ SCRIPT ALWAYS AT BOTTOM -->
<script src="app.js"></script>
<!-- ================= FOOTER ================= -->
<footer style="text-align:center; padding:20px; opacity:0.6;">
Made by Ayan Ahmad | History Timeline Project
</footer>
</body>
</html>