-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
156 lines (141 loc) · 5.4 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Explore Hasindu Nagolla's comprehensive Python repository, featuring tutorials and examples on variables, data structures, OOP, functions, error handling, and more.">
<meta name="keywords" content="Python, Python tutorials, Python examples, Variables, Data Structures, OOP, Functions, Error Handling">
<meta name="author" content="Hasindu Nagolla">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Hasindu Nagolla - Python Repository">
<meta property="og:description" content="A comprehensive guide to Python tutorials and examples.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://github.com/hasindu-nagolla/Python">
<meta property="og:image" content="https://hasindu-nagolla-python-repo.com/assets/preview.png">
<title>Hasindu Nagolla - Python Repository</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f0f4f8;
color: #333;
}
header {
background: linear-gradient(90deg, #4CAF50, #81C784);
color: white;
padding: 30px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
margin-top: 10px;
font-size: 1.2rem;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
gap: 20px;
}
.section {
background: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 300px;
padding: 20px;
transition: transform 0.2s;
}
.section:hover {
transform: translateY(-5px);
}
.section h2 {
margin-top: 0;
font-size: 1.5rem;
color: #4CAF50;
}
.section p {
font-size: 1rem;
color: #666;
}
a {
color: #4CAF50;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
margin-top: 40px;
padding: 20px;
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Hasindu Nagolla - Python Repository</h1>
<p>A comprehensive guide to Python tutorials and examples</p>
</header>
<div class="container">
<div class="section">
<h2><a href="01. Variables/Variables.py">Variables</a></h2>
<p>Learn about variables in Python and how to use them effectively.</p>
</div>
<div class="section">
<h2><a href="https://github.com/hasindu-nagolla/Python/tree/main/02.%20Basic%20Data%20Structures">Basic Data Structures</a></h2>
<p>Explore Python's built-in data structures like lists, dictionaries, and tuples.</p>
</div>
<div class="section">
<h2><a href="03. Comprehension/">Comprehension</a></h2>
<p>Understand list, dictionary, and set comprehensions with examples.</p>
</div>
<div class="section">
<h2><a href="04. Conditional Statements/">Conditional Statements</a></h2>
<p>Master Python's conditional statements like if, else, and elif.</p>
</div>
<div class="section">
<h2><a href="05. Loops/">Loops</a></h2>
<p>Get familiar with loops in Python, including for, while, and nested loops.</p>
</div>
<div class="section">
<h2><a href="06. Functions/">Functions</a></h2>
<p>Learn about defining and using functions in Python.</p>
</div>
<div class="section">
<h2><a href="07. File input output/">File Input/Output</a></h2>
<p>Work with file operations like reading, writing, and appending in Python.</p>
</div>
<div class="section">
<h2><a href="08. OOP/">Object-Oriented Programming (OOP)</a></h2>
<p>Dive into classes, objects, inheritance, encapsulation, and polymorphism.</p>
</div>
<div class="section">
<h2><a href="09. Method Types/">Method Types</a></h2>
<p>Understand different method types, including instance, class, and static methods.</p>
</div>
<div class="section">
<h2><a href="10. Error Handling/">Error Handling</a></h2>
<p>Learn to handle exceptions and create custom error-handling mechanisms.</p>
</div>
<div class="section">
<h2><a href="11. Modules/">Modules</a></h2>
<p>Explore Python modules, how to create them, and their practical usage.</p>
</div>
<div class="section">
<h2><a href="12. Dependencies/">Dependencies</a></h2>
<p>Understand dependencies and how to manage them effectively in Python projects.</p>
</div>
</div>
<footer>
<p>© 2025 Hasindu Nagolla. All rights reserved.</p>
</footer>
</body>
</html>