-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (77 loc) · 2.73 KB
/
index.html
File metadata and controls
88 lines (77 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Newton School of Technology</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to right, #f0f4ff, #e8f0fe);
color: #333;
}
header {
background: #0047ab;
color: white;
padding: 20px;
text-align: center;
font-size: 2.5rem;
font-weight: bold;
letter-spacing: 1px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
section {
padding: 40px 20px;
max-width: 1000px;
margin: auto;
background: white;
margin-top: 20px;
border-radius: 12px;
box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
h2 {
color: #0047ab;
border-left: 4px solid #0047ab;
padding-left: 10px;
}
ul {
padding-left: 20px;
}
}
</style>
</head>
<body>
<header>Newton School of Technology</header>
<section id="about">
<h2>About Me</h2>
<p>I am a passionate and driven learner currently studying Computer Science with a focus on Artificial Intelligence. I love building smart automation systems and exploring the power of AI through hands-on projects. My goal is to innovate and build solutions that make life easier through technology.</p>
</section>
<section id="skills">
<h2>My Skills</h2>
<ul>
<li>🔹 Python (Advanced)</li>
<li>🔹 C++ (Intermediate - via Headstart)</li>
<li>🔹 JavaScript, HTML, CSS</li>
<li>🔹 AI & Machine Learning (Basics)</li>
<li>🔹 Automation with Telethon and GUI Tools</li>
<li>🔹 PyInstaller for .exe packaging</li>
<li>🔹 OpenCV for computer vision</li>
<li>🔹 Voice command processing & web automation</li>
</ul>
</section>
<section id="projects">
<h2>My Projects</h2>
<ul>
<li><strong>Jarvis-like AI Assistant:</strong> Built using Python, Telethon, and voice commands. It takes Telegram messages, opens sites, replies, and performs desktop automation.</li>
<li><strong>Python to EXE Tool:</strong> Developed packaging scripts using PyInstaller to convert complex automation into distributable .exe files.</li>
<li><strong>OpenCV Face Detection:</strong> Implemented real-time face recognition for login systems.</li>
<li><strong>Pi.ai Integration:</strong> Created a web automation script to open and interact with Pi.ai persistently.</li>
<li><strong>Arduino + AI Home Automation:</strong> Connected Python AI to Arduino via IR and Servo to mimic AC remote control.</li>
</ul>
</section>
<footer>
© 2025. All Rights Reserved.
</footer>
</body>
</html>