-
Notifications
You must be signed in to change notification settings - Fork 3
/
eCard.html
30 lines (30 loc) · 1.83 KB
/
eCard.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Card</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
<div class="w-full h-screen flex justify-center items-center flex-col">
<div class="bg-blue-800 text-sm md:text-md xl:text-lg lg:text-lg sm:text-sm md:w-1/2 xl:w-1/3 sm:w-2/3 w-3/4" style="border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem; min-width: 360px;">
<h1 class="text-center my-3 text-white font-semibold">Motilal Nehru National Institute Of Technology, Prayagraj</h1>
</div>
<div class="xl:w-1/3 md:w-1/2 sm:w-2/3 bg-gray-200 w-3/4" style="min-width: 360px;">
<h1 class="text-center font-semibold md:text-md lg:text-lg text-sm sm:text-sm xl:text-xl text-gray-700 my-2">Student E-Card</h1>
</div>
<div class="xl:w-1/3 md:w-1/2 sm:w-2/3 w-3/4 shadow-lg hover:shadow-xl transition-shadow duration-500 ease-in-out bg-gray-200 flex" style="border-bottom-left-radius: 1.5rem; border-bottom-right-radius: 1.5rem; min-width: 360px;">
<div class="w-3/4 flex justify-center flex-col md:text-md sm:text-sm text-smlg:text-lg xl:text-lg" style="margin-left: 1em; margin-bottom: 1em;">
<h1 class="my-2"><b>Name</b> : Mohit Pandey</h1>
<h1 class="my-2"><b>Reg. No.</b> : 20194204</h1>
<h1 class="my-2"><b>Branch</b> : Computer Science Eng.</h1>
<h1 class="my-2"><b>Email</b> : <i>[email protected]</i></h1>
</div>
<div class="w-1/4 flex justify-center items-center">
<img src="https://img.icons8.com/officel/80/000000/user.png" class="w-11/12 ">
</div>
</div>
</div>
</body>
</html>