-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
135 lines (105 loc) · 3.1 KB
/
home.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
<!-- Site favicon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="./Student/vendors/images/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./Student/vendors/images/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./Student/vendors/images/favicon-16x16.png"
/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<style>
body {
background-color: #F8F8F8;
/* background-image:url('./at001.jpg');
height: 100vh;
background-position: center;
width: 100%; */
}
h1 {
text-align: center;
}
h2 {
text-align: center;
}
h3 {
text-align: center;
}
h4 {
text-align: center;
}
h5 {
text-align: center;
}
h6 {
text-align: center;
}
p {
text-align: center;
}
a {
text-align: center;
}
.btn{
text-align: center;
}
.container{
width: 100%;
height: 100vh;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div class="container mt-3 ">
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-sm-2"> <img src="./logo1.webp" alt="sltc"></div>
<div class="col-sm-10"><h1>University Attendance Manegment System</h1></div>
</div>
</div>
</div>
<div class="row my-5">
<div class="col-sm-4 ">
<a href="./Teacher/index.php">
<div class=" "style="width: 23rem;">
<img src="./Student/img/Group 489.png" class="card-img-top" alt="...">
</div>
</a>
</div>
<div class="col-sm-4 ">
<a href="./Student/index.php">
<div class=""style="width: 23rem;">
<img src="./Student/img/Group 491.png" class="card-img-top" alt="...">
</div>
</a>
</div>
<div class="col-sm-4 ">
<a href="./Admin/index.php">
<div class=""style="width: 23rem;">
<img src="./Student/img/Group 492.png" class="card-img-top" alt="...">
</div>
</a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>