-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdesign.html
86 lines (82 loc) · 5.31 KB
/
design.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
<!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>The Design Company</title>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="./main.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter:[email protected]&family=Qwitcher+Grypen:wght@400;700&display=swap');
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
</style>
<script>document.documentElement.classList.add('js')</script>
</head>
<body class="relative w-full mx-auto transition-all duration-1000 !scroll-smooth scrollbar-hide">
<nav class="w-full">
<div class="flex items-center justify-between pt-5 relative mx-10">
<a href="/" class="cursor-pointer" data-aos="zoom-in-left" data-aos-delay="300"><img src="./Resources/Group 1.svg" alt="The Design Company" width="145px"></a>
<ul class="flex space-x-5 font-semibold text-base font-Inter">
<li class="text-black hover:text-light-purple cursor-pointer transition-all duration-200 relative group
pb-2" data-aos="zoom-in-left" data-aos-delay="450">
<a href="./catagory.html">Category</a>
<div class="absolute bottom-0 w-full h-1 bg-light-purple hidden group-hover:block transition-all duration-200 rounded-3xl"></div>
</li>
<li class="text-black hover:text-light-purple cursor-pointer transition-all duration-200 relative group
pb-2 " data-aos="zoom-in-left" data-aos-delay="600">
<a href="#">Pricing</a>
<div class="absolute bottom-0 w-full h-1 bg-light-purple hidden group-hover:block transition-all duration-200 rounded-3xl"></div>
</li>
<li class="text-black hover:text-light-purple cursor-pointer transition-all duration-200 relative group
pb-2" data-aos="zoom-in-left" data-aos-delay="750"><a href="./order.html">Orders</a>
<div class="absolute bottom-0 w-full h-1 bg-light-purple hidden group-hover:block transition-all duration-200 rounded-3xl"></div>
</li>
<li class="text-black hover:text-light-purple cursor-pointer transition-all duration-200 relative group
pb-2 " data-aos="zoom-in-left" data-aos-delay="900"><a href="./about.html">About</a>
<div class="absolute bottom-0 w-full h-1 bg-light-purple hidden group-hover:block transition-all duration-200 rounded-3xl"></div>
</li>
</ul>
<div class="flex font-semibold text-base font-Inter">
<button class="pr-3 items-center flex space-x-2" data-aos="zoom-in-left" data-aos-delay="1150"><img width="20px" height="20px" src="./Resources/ingate.png" alt="" onclick="window.location.href='Login.html';" >Login</button>
<button class="rounded-xl bg-light-purple w-20 h-8 hover:w-24 hover:h-12 transition-all duration-800 text-white" style="color: aliceblue;" data-aos="fade-left" data-aos-delay="1300" onclick="window.location.href='SignUp.html';" >Sign Up</button>
</div>
</div>
</nav>
<div class="flex mx-14 mt-9 gap-10">
<div class="w-[1100px] h-[700px] shrink-0 ">
<img src="./Resources/mahashiv.jpg" alt="" class="w-full h-full rounded-3xl">
</div>
<div class="text-justify">
<div class="text-5xl font-Inria-serif pt-4">
Mahashivratri
</div>
<div class="text-xl font-Inria-serif pt-4">
Description of Design -:
</div>
<div class="text-xl font-Inria-serif pt-4">
Divine Backdrop: The radiant yellow background creates an auspicious atmosphere.
</div>
<div class="text-xl font-Inria-serif pt-4">Tridents and Damarus: Two tridents with Damarus are symmetrically placed on either side of Lord Shiva’s silhouette, detailed in red, brown, and black.</div>
<div class="text-xl font-Inria-serif pt-4">Cloud-like Pattern: A pattern at the bottom provides a base for the elements and text.</div>
<div class="text-xl font-Inria-serif pt-4">Festive Greetings: The text “HAPPY MAHA SHIVRATRI” is boldly written in white, with a subtext offering blessings.</div>
<div class="text-xl font-Inria-serif pt-4 font-bold">
Designer -: VIVEK BENDRE
</div>
<div class="mt-12 flex justify-center">
<a href="./Resources/mahashiv.jpg" download="Mahashivratri">
<button class="text-4xl bg-light-purple w-56 h-20 rounded-[50px] text-white font-bold font-Inria-serif">
Download
</button>
</a>
</div>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>