Video Player Component
A simple video player component designed using Material Design principles with a responsive layout and dark theme support.
HTML Code
<div class="max-w-xl mx-auto bg-white dark:bg-gray-800 rounded-lg shadow-md overflow-hidden mt-8">
<div class="relative overflow-hidden">
<video class="w-full h-auto" controls>
<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="p-4">
<h2 class="text-lg font-semibold text-gray-800 dark:text-white">Video Title</h2>
<p class="text-gray-600 dark:text-gray-300 mt-1">This is a short description of the video content. It provides useful information about what the viewer can expect.</p>
<div class="flex items-center mt-4">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="Avatar" class="w-10 h-10 rounded-full mr-2">
<div>
<p class="text-gray-800 dark:text-white">Author Name</p>
<p class="text-gray-500 dark:text-gray-400 text-sm">Date Uploaded</p>
</div>
</div>
</div>
</div>
Related Components
Neon_Glow_Video_Player
A simple, responsive video player component for business/corporate websites, featuring neon/glow effects and a warm sunset color scheme. Includes dark mode support.
Video Player Component - Watercolor/Artistic, Ocean/Blue, Healthcare
A simple, responsive video player component with a watercolor/artistic design style and ocean/blue color scheme, suitable for healthcare and medical applications. Includes dark mode support.
Video Player Component
A retro/vintage styled video player component featuring responsive design and dark mode support using Tailwind CSS.