-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
76 lines (61 loc) · 1.83 KB
/
Copy pathindex.php
File metadata and controls
76 lines (61 loc) · 1.83 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
<html>
<title>Home</title>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<style>
.center {
display: flex;
justify-content: center;
align-items: center;
width:400px;
height: 100px;
margin-left: 660px;
background-image: none;
padding: 50px;
}
.img{
width: 700px;
height: 700px;
}
body{
background-image: url("00.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
h3 {
text-align: center;
text-transform: uppercase;
color: #4CAF50;
}
p {
text-indent: 50px;
text-align: justify;
letter-spacing: 3px;
}
.border {
border: 3px solid black;
padding: 8px;
margin-left: 10px;
margin-right: 10px;
}
</style>
<body>
<br>
<div class="border">
<br><br>
<h3 style="color: #dc3545;"><b>Spark Foundation Internship</b> <br> Credit Management Website <br> Task #2</h3>
</div>
<div class="center" style="text-align: center">
<button><a href="insert.php" style="color:black; " style="text-decoration: none">Add users</a></button>
<button><a href="allusers.php" style="color:black; " style="text-decoration: none">All Users</a></button>
<button> <a href="transaction.php" style="color:black; " style="text-decoration: none">Mini Statement</a> </button>
</div>
</body>
</html>