<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Resume Widgets</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 text-gray-800">
<!-- Container -->
<div class="container mx-auto p-6 bg-white shadow-md rounded-lg mt-10 space-y-8">
<!-- Header Widget -->
<div class="widget-header text-center">
<h1 class="text-4xl font-bold mb-2">Codezillaye</h1>
<p class="text-gray-600">Innovative and deadline-driven Graphic Designer with 3+ years of experience.</p>
</div>
<!-- Contact Information Widget -->
<div class="widget-contact bg-blue-100 p-6 rounded-lg shadow-md">
<h2 class="text-2xl font-semibold mb-4">Contact Information</h2>
<ul class="space-y-2">
<li><strong>Address:</strong> Portland par 127, Orlando, FL</li>
<li><strong>Phone:</strong> (123) 456-7891</li>
<li><strong>Email:</strong> Codezillaye.com</li>
</ul>
</div>
<!-- Education Widget -->
<div class="widget-education bg-green-100 p-6 rounded-lg shadow-md">
<h2 class="text-2xl font-semibold mb-4">Education</h2>
<div class="space-y-4">
<div>
<h3 class="text-xl font-bold">Master of Fine Arts & Graphic Design</h3>
<p class="text-gray-700"><em>Rochester Institute of Technology, Rochester, NY</em></p>
<p class="text-gray-500">2015 - 2016</p>
</div>
<div>
<h3 class="text-xl font-bold">Bachelor of Fine Arts & Graphic Design</h3>
<p class="text-gray-700"><em>Rochester Institute of Technology, Rochester, NY</em></p>
<p class="text-gray-500">2016 - 2020</p>
</div>
</div>
</div>
<!-- Professional Experience Widget -->
<div class="widget-experience bg-yellow-100 p-6 rounded-lg shadow-md">
<h2 class="text-2xl font-semibold mb-4">Professional Experience</h2>
<div class="space-y-4">
<div>
<h3 class="text-xl font-bold">Senior Graphic Design Specialist</h3>
<p class="text-gray-700"><em>Experion, New York, NY</em></p>
<p class="text-gray-500">2019 - Present</p>
<p>Lead in the design, development, and implementation of the graphic, layout, and production communication materials. Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project.</p>
</div>
<div>
<h3 class="text-xl font-bold">Graphic Design Specialist</h3>
<p class="text-gray-700"><em>Stepping Stone Advertising, New York, NY</em></p>
<p class="text-gray-500">2017 - 2018</p>
<p>Developed numerous marketing programs (logos, brochures, infographics, presentations, and advertisements). Managed up to 5 projects or tasks at a given time while under pressure.</p>
</div>
</div>
</div>
<!-- Skills Widget -->
<div class="widget-skills bg-red-100 p-6 rounded-lg shadow-md">
<h2 class="text-2xl font-semibold mb-4">Skills</h2>
<ul class="space-y-2">
<li class="bg-red-200 p-2 rounded">Graphic Design</li>
<li class="bg-red-200 p-2 rounded">Adobe Creative Suite</li>
<li class="bg-red-200 p-2 rounded">Project Management</li>
<li class="bg-red-200 p-2 rounded">Team Leadership</li>
<li class="bg-red-200 p-2 rounded">Communication</li>
</ul>
</div>
</div>
</body>
</html>