-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (66 loc) · 2.09 KB
/
index.html
File metadata and controls
67 lines (66 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Projects Index</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
}
header {
background-color: #333;
color: white;
padding: 1rem;
text-align: center;
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin: 1rem 0;
text-align: center;
}
a {
text-decoration: none;
color: #007BFF;
}
a:hover {
text-decoration: underline;
}
.container {
max-width: 600px;
margin: 2rem auto;
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<header>
<h1>Basic Projects</h1>
<p>Select a project to view</p>
</header>
<div class="container">
<ul>
<li><a href="./AI_chat/chatbot.html">AI Chat Project</a></li>
<li><a href="./Basic%20grow%20clone/chart.html">Basic Grow Clone</a></li>
<li><a href="./Google_map/index.html">Google Map Project</a></li>
<li><a href="./Places_Autocomplete_though_google/autocomplete.html">Places Autocomplete</a></li>
<li><a href="./Python_backend_login_page/help.html">Python Backend Login Page</a></li>
<li><a href="./WeatherApp/index.html">Weather forecast </a></li>
<li>
<a href="https://rishabharaj.github.io/gamified-portfolio/" target="_blank" rel="noopener noreferrer">Gamified Portfolio (Deployed)</a>
|
<a href="https://github.com/rishabharaj/gamified-portfolio" target="_blank" rel="noopener noreferrer">Repo</a>
</li>
</ul>
</div>
</body>
</html>