-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwelcome.php
49 lines (46 loc) · 1.58 KB
/
welcome.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
<title>Welcome to Our Website</title>
<style>
body {
background-color: #f8f9fa;
}
.container {
max-width: 600px;
}
.alert {
border-radius: 8px;
}
.alert-success {
background-color: #d4edda;
border-color: #c3e6cb;
color: #155724;
}
.mb-0 a {
color: #007bff;
text-decoration: underline;
}
.mb-0 a:hover {
color: #0056b3;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container mt-5">
<div class="alert alert-success" role="alert">
<h4 class="alert-heading">Welcome to Our Website!</h4>
<p>We're delighted to have you as our valued visitor. Explore our fantastic range of products and find what you're looking for.</p>
<hr>
<p class="mb-0">Head back to the <a href="home.php">home page</a> to discover more exciting products.</p>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</body>
</html>