-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.html
86 lines (69 loc) · 1.43 KB
/
category.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
<html>
<head>
<style>
div.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 300px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
background-color : white;
}
header {
padding : 20px 20px;
}
div.maincontainer {
padding: 100px 100px;
background-color:white;
align: center;
}
body {
background-image : url('7.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
</style>
</head>
<body>
<header>
<h1><center>Learning and assessment management system<center></h1></header>
<div class="maincontainer">
<div class="gallery">
<a target="_blank" href="covidtraining.html">
<img src="2.jpg" alt="Cinque Terre" width="600" height="400">
</a>
<div class="desc">COVID -19 AWARENESS</div>
</div>
<div class="gallery">
<a target="_blank" href="#">
<img src="3.jpg" alt="Forest" width="600" height="400">
</a>
<div class="desc">INDUCTION TRAINING</div>
</div>
<div class="gallery">
<a target="_blank" href="#">
<img src="4.jpg" alt="Northern Lights" width="600" height="400">
</a>
<div class="desc">DEPARTMENT TRAININGS</div>
</div>
<div class="gallery">
<a target="_blank" href="#">
<img src="5.jpg" alt="Mountains" width="600" height="400">
</a>
<div class="desc">ASSESSMENT TRAININGS</div>
</div>
</div>
</body>
</html>