forked from DhanushNehru/Hacktoberfest2025
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
60 lines (56 loc) · 1.63 KB
/
Index.html
File metadata and controls
60 lines (56 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TypeGuard AI Project</title>
<style>
/* TypeGuard AI CSS (Simplified) */
:root {
--primary-color: #007BFF;
--background-dark: #1E1E1E;
--text-light: #F0F0F0;
--code-background: #252526;
}
body {
font-family: Arial, sans-serif;
background-color: var(--background-dark);
color: var(--text-light);
margin: 0;
padding: 0;
}
.header {
background-color: #2D2D30;
padding: 20px;
border-bottom: 3px solid var(--primary-color);
text-align: center;
}
.header h1 {
color: var(--text-light);
}
pre {
background-color: var(--code-background);
padding: 15px;
border-radius: 5px;
margin: 20px auto;
max-width: 80%;
overflow-x: auto;
}
</style>
</head>
<body>
<header class="header">
<h1>TypeGuard AI</h1>
<p>A Hacktoberfest Contribution: Enhancing ML Stability with Type Hinting</p>
</header>
<div style="padding: 20px; text-align: center;">
<h2>The Code Contribution</h2>
<p>Example of adding explicit type hints to a utility function:</p>
<pre><code>
def normalize_data(data: List[Union[int, float]]) -> List[float]:
# ... implementation details ...
pass
</code></pre>
</div>
</body>
</html>