-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
80 lines (65 loc) · 1.42 KB
/
Copy pathindex.php
File metadata and controls
80 lines (65 loc) · 1.42 KB
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
<html>
<!--
This Is Copyrighted to Mr.ROY121
Please Contact Becfore Using it..
Email: nilashishroyjoy@gmail.com
-->
<head>
<meta charset="utf-8">
<link rel="stylesheet"href="https://www.w3schools.com/w3css/4/w3.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<body>
<div class="container">
<img src="images/welcome.jpg" alt="Snow" style="width:100%;">
<div class="centered">
<h1 >Event Management</h2>
<p>Events with Elegance</p>
<a href="page-1.php" class="btn btn-large" style="margin-left: 200px;">Go To The Website!</a>
</div>
</div>
</body>
</html>
<style>
.container {
position: relative;
color: white;
}
h1 {
margin-top: -150px;
font-size: 60px;
text-align: center;
font-weight: bold;
text-transform: uppercase;
color: #fff;
}
p {
font-size: 25px;
text-align: center;
text-transform: uppercase;
color: #fff;
}
.centered {
position: absolute;
top: 85%;
left: 50%;
transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
h1 {
margin-top: -50px;
font-size: 28px;
text-align: center;
font-weight: bold;
text-transform: uppercase;
color: #fff;
}
p {
font-size: 16px;
text-align: center;
text-transform: uppercase;
color: #fff;
}
}
</style>