-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathprofile.html
More file actions
39 lines (39 loc) · 1.3 KB
/
profile.html
File metadata and controls
39 lines (39 loc) · 1.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>my profile</title>
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
</head>
<body class="bg-gray-200">
<div class=" container mx-auto ">
<div class="flex h-screen p-6">
<div class="w-1/3 pr-10">
<div class="w-5/6 p-5 bg-white rounded-lg shadow-xl flex flex-col">
<div>
<img
class="rounded-lg mx-auto md:h-auto md:w-full"
src="https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=448&q=80"
alt="Woman paying for a purchase"
/>
</div>
<div class="pt-6">
<h4 class="text-2xl text-gray-900 leading-relaxed">
Abhishek Chopra
</h4>
<h4 class="text-base text-gray-600 leading-normal">
Git instructor
</h4>
</div>
</div>
</div>
<div class="w-2/3 flex flex-wrap -mb-4 -mx-2"></div>
</div>
</div>
</body>
</html>