-
Notifications
You must be signed in to change notification settings - Fork 5
/
test.txt
43 lines (40 loc) · 1.64 KB
/
test.txt
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
<!-- component -->
<!-- Bg orange -->
<div class="max-w-screen-lg bg-orange-500 shadow-2xl rounded-lg mx-auto text-center py-12 mt-4">
<h2 class="text-3xl leading-9 font-bold tracking-tight text-white sm:text-4xl sm:leading-10">
Start studying with us
</h2>
<div class="mt-8 flex justify-center">
<div class="inline-flex rounded-md bg-white shadow">
<a href="#" class="text-gray-700 font-bold py-2 px-6">
Start
</a>
</div>
</div>
</div>
<!-- ng Bg indigo -->
<div class="max-w-screen-lg bg-indigo-500 shadow-2xl rounded-lg mx-auto text-center py-12 mt-4">
<h2 class="text-3xl leading-9 font-bold tracking-tight text-white sm:text-4xl sm:leading-10">
Start studying with us
</h2>
<div class="mt-8 flex justify-center">
<div class="inline-flex rounded-md bg-white shadow">
<a href="#" class="text-gray-700 font-bold py-2 px-6">
Start
</a>
</div>
</div>
</div>
<!-- Bg white -->
<div class="max-w-screen-lg bg-white shadow-2xl rounded-lg mx-auto text-center py-12 mt-4">
<h2 class="text-3xl leading-9 font-bold tracking-tight text-gray-800 sm:text-4xl sm:leading-10">
Start studying with us
</h2>
<div class="mt-8 flex justify-center">
<div class="inline-flex rounded-md bg-blue-500 shadow">
<a href="#" class="text-gray-200 font-bold py-2 px-6">
Start
</a>
</div>
</div>
</div>