-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6756ba5
commit d10a7df
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="style.css" /> | ||
<title>Document</title> | ||
</head> | ||
<body class="bg-slate-900"> | ||
<div class="flex"> | ||
<div class="h-72 w-72 bg-red-600 mx-6 my-6 rounded-xl overflow-hidden"> | ||
<div class=""> | ||
<img src="background.png.jpg" alt="" /> | ||
</div> | ||
<div class="text-center text-white font-medium"> | ||
<h1 class="font-bold text-xl mt-2">This is Background</h1> | ||
<p class="text-sm mt-2">Tailwindcss</p> | ||
</div> | ||
<div class="text-center mt-2"> | ||
<button | ||
class="bg-black rounded-xl text-white px-5 py-2 text-base hover:bg-purple-800 text-white" | ||
> | ||
Learn More | ||
</button> | ||
</div> | ||
</div> | ||
<div class="h-72 w-72 bg-red-600 mx-6 my-6 rounded-xl overflow-hidden"> | ||
<div class=""> | ||
<img src="background.png.jpg" alt="" /> | ||
</div> | ||
<div class="text-center text-white font-medium"> | ||
<h1 class="font-bold text-xl mt-2">This is Background</h1> | ||
<p class="text-sm mt-2">Tailwindcss</p> | ||
</div> | ||
<div class="text-center mt-2"> | ||
<button | ||
class="bg-black rounded-xl text-white px-5 py-2 text-base hover:bg-purple-800 text-white" | ||
> | ||
Learn More | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="flex space-x-3 mx-6 items-center"> | ||
<div class="bg-fuchsia-700 h-52 w-52 text-center">1</div> | ||
<div class="bg-fuchsia-700 h-52 w-52 text-center">2</div> | ||
<div class="bg-fuchsia-700 h-52 w-52 text-center">3</div> | ||
</div> | ||
|
||
<div class="mx-8 py-8 flex"> | ||
<div class="bg-green-600 h-96 w-96 rounded-lg overflow-hidden px-8"> | ||
<img class="mt-4 rounded-sm" src="background.png.jpg" alt="" /> | ||
<h2 class="text-center font-bold text-white text-2xl mt-4 uppercase"> | ||
Lorem ipsum dolor sit. | ||
</h2> | ||
<p class="text-center text-white"> | ||
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Et, sit | ||
placeat. Aperiam expedita, quod alias consequatur minus, vero hic | ||
architecto commodi laborum quos veritatis sapiente! Consequuntur ex | ||
tempore | ||
</p> | ||
</div> | ||
<div class="mx-8"> | ||
<a href="https://www.google.com/"> | ||
<button | ||
class="bg-red-600 px-6 py-3 rounded-md text- text-white text-base font-medium hover:bg-purple-800 uppercase" | ||
> | ||
Buy Now | ||
</button> | ||
</a> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |