-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (60 loc) · 2.89 KB
/
index.html
File metadata and controls
68 lines (60 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Avinaash - Student Portfolio</title>
<style>
body { margin:0; font-family: Arial, sans-serif; color: #333; }
header { background: #111; color: white; padding: 60px 20px; text-align: left;
background: linear-gradient(135deg, #4b4b4b 30%, #000 90%); }
header h1 { font-size: 3em; margin:0; }
header p { font-size: 1.25em; margin-top: 10px; }
.band { background: #FFD740; height: 8px; }
.section { padding: 40px 20px; max-width: 900px; margin: auto; }
.section.bg-dark { background: #222; color: #eee; }
.section.bg-light { background: #fdfdfd; }
.section h2 { font-size: 2em; margin-bottom: 20px; }
.footer { background: #eee; padding: 30px 20px; text-align: center; }
.footer h3 { font-family: 'Brush Script MT', cursive; font-size: 2em; }
.footer a img { width:40px; margin: 0 10px; vertical-align: middle; }
@media (max-width:600px) {
header h1 { font-size: 2.2em; }
header p { font-size: 1em; }
}
</style>
</head>
<body>
<header>
<h1>Avinaash</h1>
<p>Data‑Driven Thinker | Tech Enthusiast</p>
</header>
<div class="band"></div>
<section class="section bg-dark">
<h2>About</h2>
<p>
I am a student currently enrolled at <strong>Amrita Vishwa Vidyapeetham, Coimbatore</strong>, with a strong enthusiasm for technology, data analysis, and innovation.<br><br>
My academic journey has been shaped by hands‑on learning in programming, statistics, and machine learning.<br><br>
With a solid grounding in electronics and analytical thinking, I take a multidisciplinary approach to solving real‑world problems.<br><br>
I’ve been actively involved in projects that span data visualization, predictive modeling, and data‑driven applications.<br><br>
My school education was completed at <strong>Vidya Mandir, Mylapore, Chennai</strong>, where I built a strong foundation in academics and problem‑solving.<br><br>
I aspire to utilize data science and modern tools to uncover actionable insights and create impactful solutions across industries.
</p>
</section>
<div class="band"></div>
<section class="section bg-light">
<h2>Activity 1</h2>
<p>
Create a Google Site as a student portfolio with <strong>Statistics 1</strong> as one of the pages inside it. Provide a short and relevant description about the course on this page.
</p>
</section>
<div class="band"></div>
<footer class="footer">
<h3>Get in Touch</h3>
<p>
<a href="mailto:broodscol77@gmail.com"><img src="https://ssl.gstatic.com/ui/v1/icons/mail/rfr/gmail.ico" alt="Gmail"></a>
<a href="https://www.linkedin.com/in/yourprofile"><img src="https://cdn-icons-png.flaticon.com/512/174/174857.png" alt="LinkedIn"></a>
</p>
</footer>
</body>
</html>