-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (89 loc) · 5.12 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend Mentor</title>
<link rel="shortcut icon" href="//gavinpereira.in/fav" type="image/x-icon">
</head>
<script src="//cdn.tailwindcss.com"></script>
<body class="overflow-x-hidden">
<header class="bg-gradient-to-r from-teal-200 to-lime-200 w-screen flex flex-col items-center">
<div class="container mx-auto px-5">
<h1 class="text-center font-black text-3xl lg:text-5xl py-10 lg:py-20">Frontend Mentor projects</h1>
</div>
</header>
<div class="container mx-auto px-5">
<p class="text-center text-sm py-8">
<span class="font-bold">Note:</span> Most of these projects were built in 2020, when I just started with
frontend development. Pages
may not be mobile responsive.
</p>
</div>
<ol class="grid md:grid-cols-2 lg:grid-cols-4 container mx-auto px-5 py-16 gap-x-10 gap-y-20">
<li class="space-y-2"> <img src="./blogr/design/desktop-preview.jpg" alt="blogr" />
<h2 class="font-black text-4xl">Blogr</h2> <a href="/blogr"
class=" text-blue-600 hover:underline block">fem.gavn.in/blogr</a>
</li>
<li class="space-y-2"> <img src="./easybank/design/desktop-preview.jpg" alt="easybank" />
<h2 class="font-black text-4xl">Easybank</h2> <a href="/easybank"
class=" text-blue-600 hover:underline block">fem.gavn.in/easybank</a>
</li>
<li class="space-y-2"> <img src="./insights/design/desktop-preview.jpg" alt="insights" />
<h2 class="font-black text-4xl">Insights</h2> <a href="/insights"
class=" text-blue-600 hover:underline block">fem.gavn.in/insights</a>
</li>
<li class="space-y-2"> <img src="./insure/design/desktop-preview.jpg" alt="insure" />
<h2 class="font-black text-4xl">Insure</h2> <a href="/insure"
class=" text-blue-600 hover:underline block">fem.gavn.in/insure</a>
</li>
<li class="space-y-2"> <img src="./loop/design/desktop-preview.jpg" alt="loop" />
<h2 class="font-black text-4xl">Loop</h2> <a href="/loop"
class=" text-blue-600 hover:underline block">fem.gavn.in/loop</a>
</li>
<li class="space-y-2"> <img src="./room/design/desktop-preview.jpg" alt="room" />
<h2 class="font-black text-4xl">Room</h2> <a href="/room"
class=" text-blue-600 hover:underline block">fem.gavn.in/room</a>
</li>
<li class="space-y-2"> <img src="./sunnyside/design/desktop-preview.jpg" alt="sunnyside" />
<h2 class="font-black text-4xl">Sunnyside</h2> <a href="/sunnyside"
class=" text-blue-600 hover:underline block">fem.gavn.in/sunnyside</a>
</li>
<li class="space-y-2"> <img src="./testimonials/design/desktop-preview.jpg" alt="testimonials" />
<h2 class="font-black text-4xl">Testimonials</h2> <a href="/testimonials"
class=" text-blue-600 hover:underline block">fem.gavn.in/testimonials</a>
</li>
<li class="space-y-2"> <img src="./card/design/desktop-preview.jpg" alt="card" />
<h2 class="font-black text-4xl">Card</h2> <a href="/card"
class=" text-blue-600 hover:underline block">fem.gavn.in/card</a>
</li>
<li class="space-y-2"> <img src="./qr/design/desktop-preview.jpg" alt="qr" />
<h2 class="font-black text-4xl">QR</h2> <a href="/qr"
class=" text-blue-600 hover:underline block">fem.gavn.in/qr</a>
</li>
<li class="space-y-2"> <img src="./base/design/desktop-preview.jpg" alt="base" />
<h2 class="font-black text-4xl">Base</h2> <a href="/base"
class=" text-blue-600 hover:underline block">fem.gavn.in/base</a>
</li>
<li class="space-y-2"> <img src="./nft/design/desktop-preview.jpg" alt="nft" />
<h2 class="font-black text-4xl">NFT</h2> <a href="/nft"
class=" text-blue-600 hover:underline block">fem.gavn.in/nft</a>
</li>
<li class="space-y-2"> <img src="./huddle/resource/design/desktop-preview.jpg" alt="huddle" />
<h2 class="font-black text-4xl">Huddle</h2> <a href="/huddle"
class=" text-blue-600 hover:underline block">fem.gavn.in/huddle</a>
</li>
<li class="space-y-2"> <img src="./column/resource/design/desktop-preview.jpg" alt="column" />
<h2 class="font-black text-4xl">Column</h2> <a href="/column"
class=" text-blue-600 hover:underline block">fem.gavn.in/column</a>
</li>
<li class="space-y-2"> <img src="./proof/resource/design/desktop-preview.jpg" alt="proof" />
<h2 class="font-black text-4xl">Proof</h2> <a href="/proof"
class=" text-blue-600 hover:underline block">fem.gavn.in/proof</a>
</li>
</ol>
<!-- <li><a href="bookmark">Bookmark</a></li> -->
<!-- <li><a href="manage">Manage</a></li> -->
</body>
</html>