-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
74 lines (70 loc) · 2.21 KB
/
error.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
<!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>PHP Chatroom</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="/SK_PHP_PROJECTS/PHP_Chatting_room/css/style.css">
<style>
header {
/* width: 80%; */
border-bottom: 3px solid antiquewhite;
padding: 15px;
position: relative;
background: #353b48aa;
}
a{
color: white;
}
.finalmessage {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 70vh;
}
body {
background: url('https://images.pexels.com/photos/572897/pexels-photo-572897.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260');
}
img{
width: 40%;
border-radius: 50px;
}
@media (max-width:868px) {
header {
width: 98%;
}
.finalmessage h1{
font-size: 20px;
}
img{
width: 70%;
border-radius: 30px;
}
}
footer{
bottom: 0;
position: absolute;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1><a href="/SK_PHP_PROJECTS/PHP_Chatting_room/">GupShap Chat-room</a></h1>
</header>
<div class="finalmessage">
<h1>Your Request can`t be precessed</h1>
<img src="https://images.pexels.com/photos/1888015/pexels-photo-1888015.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" alt="">
</div>
<footer>
<div><strong>Desclaimer</strong> : This website is created for project purpose, main purpose is to create an chatroom system for
users, Please support developer if any mistake in conaint of the website i.e contact to developer or plese
try to ignore it</div>
ALL RIGHT ARE RESERVED
<div class="author">Created by: Shivkumar Chauhan</div>
</footer>
</body>
</html>