-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (78 loc) · 2.17 KB
/
index.html
File metadata and controls
82 lines (78 loc) · 2.17 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
81
82
<!DOCTYPE html>
<html>
<head>
<title>Visa Application System</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: rgb(255, 255, 255);
color: darkblue;
margin: 0;
padding: 0;
}
header {
background-color: darkblue;
color: white;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
header a {
color: white;
text-decoration: none;
font-weight: bold;
}
header a:hover {
text-decoration: underline;
}
.banner {
width: 105%;
max-height:252px ;
object-fit: cover;
}
.container {
text-align: center;
padding: 30px;
}
.btn {
background-color: crimson;
color: white;
padding: 15px 30px;
margin: 20px;
text-decoration: none;
border-radius: 5px;
font-size: 18px;
display: inline-block;
text-align: center;
width: 250px;
}
.btn:hover {
background-color: maroon;
}
.btn img {
width: 30px;
height: 30px;
vertical-align: middle;
margin-right: 10px;
}
</style>
</head>
<body>
<header>
<div>Visa Application System</div>
<div><a href="admin.php">Admin Login</a></div>
</header>
<img src="banner.png"our banner" class="banner">
<div class="container">
<h1>Welcome to the Visa Application System</h1>
<p>Apply for a visa or check your application status easily and securely.</p>
<a href="personal_details.php" class="btn">
<img src="apply.jpg" alt="Apply Icon"> Apply for Visa
</a>
<a href="status_check.php" class="btn">
<img src="status.png" > Check Application Status
</a>
</div>
</body>
</html>