-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecond.html
64 lines (59 loc) · 1.78 KB
/
second.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
<html>
<head>
<title>Home</title>
<style type="text/css">
.main_header {
font-family: Arial, Helvetica, sans-serif;
background:rgb(232, 93, 37);
color: #fff;
text-align: center;
width: 100%;
height: 50px;
margin: 10px;
}
.grid_setup {
display: grid;
grid-gap: 20px;
grid-template-columns: 100px 100px ;
grid-template-rows: 100px;
padding: 20px;
}
.services {
display: grid;
grid-template-columns: 33% 33% 33%;
grid-column-gap: 1em;
grid-row-gap: 1em;
margin-left: 100px;
color: #ddd;
margin-top: 50px;
}
.red_train {
margin-left: 420px;
}
@media (max-width: 800px) {
body {
background:lightcoral;
}
}
</style>
</head>
<body>
<header class="main_header">
<h1>Services</h1>
</header>
<div class="services">
<a href="https://www.irctc.co.in/nget/train-search" >
<img src="./resource/gallery.png" width="200px" height="200px" >
</a>
<a href="https://www.irctc.co.in/nget/train-search" >
<img src="./resource/online_book.jpeg" width="200px" height="200px" >
</a>
<a href="https://www.irctc.co.in/nget/train-search" >
<img src="./resource/enquiry.jpg" width="200px" height="200px" >
</a>
</div>
<a href="https://www.irctc.co.in/nget/train-search" >
<img src="./resource/train.png" class="red_train">
</a>
</body>
</html>