-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
64 lines (62 loc) · 2.04 KB
/
404.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
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="utf-8">
<link rel="icon" type="image/x-icon" href="asset/images/icons8-developer-16.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300i,400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<style type="text/css">
.text-9xl{
font-size: 14rem;
}
@media(max-width: 645px){
.text-9xl{
font-size: 5.75rem;
}
.text-6xl{
font-size: 1.75rem;
}
.text-2xl {
font-size: 1rem;
line-height: 1.2rem;
}
.py-8 {
padding-top: 1rem;
padding-bottom: 1rem;
}
.px-6 {
padding-left: 1.2rem;
padding-right: 1.2rem;
}
.mr-6{
margin-right: 0.5rem;
}
.px-12 {
padding-left: 1rem;
padding-right: 1rem;
}
}
</style>
</head>
<body>
<div class="bg-gradient-to-r from-purple-300 to-blue-200">
<div class="w-9/12 m-auto py-16 min-h-screen flex items-center justify-center">
<div class="bg-white shadow overflow-hidden sm:rounded-lg pb-8">
<div class="border-t border-gray-200 text-center pt-8">
<h1 class="text-9xl font-bold text-purple-400">404</h1>
<h1 class="text-6xl font-medium py-8"> صفحه یافت نشد</h1>
<p class="text-2xl pb-8 px-12 font-medium">صفحه ای که دنبالش هستید احتمالا پاک شده است</p>
<button class="bg-gradient-to-r from-purple-400 to-blue-500 hover:from-pink-500 hover:to-orange-500 text-white font-semibold px-6 py-3 rounded-md mr-6">
خانه
</button>
<button class="bg-gradient-to-r from-red-400 to-red-500 hover:from-red-500 hover:to-red-500 text-white font-semibold px-6 py-3 rounded-md">
ارتباط با ما
</button>
</div>
</div>
</div>
</div>
</body>
</html>