-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (108 loc) · 5.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MARVEL Batch 4 Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 flex flex-col min-h-screen">
<!-- Header -->
<header class="bg-gray-900 text-white p-6">
<div class="container mx-auto flex flex-wrap items-center justify-between">
<h1 class="text-2xl font-bold">My MARVEL Portfolio 🚀</h1>
<!-- Toggle Button for Mobile -->
<button class="md:hidden text-white focus:outline-none" id="menu-toggle">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7" />
</svg>
</button>
<!-- Navigation Menu -->
<nav id="menu" class="hidden w-full md:flex md:w-auto space-y-4 md:space-y-0 md:space-x-6 mt-4 md:mt-0">
<a href="#overview" class="block md:inline text-gray-300 hover:text-white">
Overview
</a>
<a href="#levels" class="block md:inline text-gray-300 hover:text-white">
Levels
</a>
<a href="#contact" class="block md:inline text-gray-300 hover:text-white">
Contact
</a>
</nav>
</div>
<script>
// JavaScript for mobile menu toggle
const menuToggle = document.getElementById('menu-toggle');
const menu = document.getElementById('menu');
menuToggle.addEventListener('click', () => {
menu.classList.toggle('hidden');
});
</script>
</header>
<!-- Overview Section -->
<section id="overview" class="container mx-auto my-10 px-6">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Welcome to My MARVEL Batch 4 Journey</h2>
<p class="text-lg text-gray-700 mb-4">
Hello guys! I have been selected as a trainee in <strong>MARVEL Batch 4</strong>. This portfolio documents
my journey through Artificial Intelligence and Machine Learning (AIML) tasks assigned during the program.
</p>
<p class="text-lg text-gray-700">
Explore the different levels of my work below. If you find this portfolio helpful, please give it a star ⭐
on
<a href="https://github.com/poovarasansivakumar2003/Marvel_Batch_4_works"
class="text-blue-600 hover:underline">GitHub</a>!
</p>
</section>
<!-- Levels Section -->
<section id="levels" class="container mx-auto space-y-8 px-6 my-10">
<!-- Level 1 -->
<div class="flex items-center bg-white shadow-lg p-6 rounded-lg">
<div class="bg-red-500 text-white p-4 rounded-full">
<p class="text-2xl font-bold">01</p>
</div>
<div class="ml-6">
<h3 class="text-xl font-bold text-gray-800">Level 1</h3>
<p class="text-gray-700">
This is the content for Level 1.
<a href="https://github.com/poovarasansivakumar2003/Marvel_Batch_4_works/tree/main/Level%201"
class="text-blue-600 hover:underline">Click here to view my work</a>.
</p>
</div>
</div>
<!-- Level 2 -->
<div class="flex items-center bg-white shadow-lg p-6 rounded-lg">
<div class="bg-blue-500 text-white p-4 rounded-full">
<p class="text-2xl font-bold">02</p>
</div>
<div class="ml-6">
<h3 class="text-xl font-bold text-gray-800">Level 2</h3>
<p class="text-gray-700">
This is the content for Level 2.
<a href="https://github.com/poovarasansivakumar2003/Marvel_Batch_4_works/tree/main/Level%202"
class="text-blue-600 hover:underline">Click here to view my work</a>.
</p>
</div>
</div>
<!-- Level 3 -->
<div class="flex items-center bg-white shadow-lg p-6 rounded-lg">
<div class="bg-teal-500 text-white p-4 rounded-full">
<p class="text-2xl font-bold">03</p>
</div>
<div class="ml-6">
<h3 class="text-xl font-bold text-gray-800">Level 3</h3>
<p class="text-gray-700">
This is the content for Level 3.
<a href="https://github.com/poovarasansivakumar2003/Marvel_Batch_4_works/tree/main/Level%203"
class="text-blue-600 hover:underline">Click here to view my work</a>.
</p>
</div>
</div>
</section>
<!-- Footer Section -->
<footer id="contact" class="bg-gray-900 text-white py-6 mt-auto mt-2 container mx-auto text-center">© 2024 MARVEL Batch 4 Portfolio.<a href="https://github.com/poovarasansivakumar2003/Marvel_Batch_4_works/blob/main/LICENSE.md" target="_blank"
style="font-weight:700; text-decoration:none;" class="text-blue-600"> All Rights Reserved</a></p>
</footer>
</body>
</html>