-
Notifications
You must be signed in to change notification settings - Fork 0
/
adout.html
165 lines (142 loc) · 4.13 KB
/
adout.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Find Rail</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-image: url('/images/background.webp');
background-size: cover;
background-position: center;
overflow-x: hidden;
}
#imglogo {
width: 70px;
height: 70px;
}
.container {
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
padding: auto;
width: 100vw;
box-sizing: border-box;
margin: 0 auto;
margin-top: 30px;
/* Adjust this value as needed */
text-align: center;
}
h1 {
color: #333;
text-align: center;
margin-bottom: 20px;
}
form {
margin-top: 20px;
}
label {
display: block;
margin-bottom: 8px;
color: #555;
font-weight: bold;
}
input[type="text"],
input[type="submit"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #75b1cd;
color: white;
cursor: pointer;
border: none;
border-radius: 4px;
font-weight: bold;
transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
background-color: #75b1cd;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 30px;
background-color: rgba(255, 255, 255, 0.8);
height: max-content;
}
.logo {
font-size: 30px;
font-weight: 700;
color: black;
text-transform: uppercase;
cursor: pointer;
}
ul {
flex: 1;
list-style: none;
text-align: center;
}
ul li {
display: inline-block;
margin: 0 20px;
position: relative;
color: black;
font-size: 25px;
}
.about {
max-width: 100vw;
/* Adjust this value as needed */
margin: 0 auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
margin-top: 100px;
/* Adjust this value as needed */
}
a {
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<div class="navbar">
<div class="logo">
<img id="imglogo" src="/images/logo.webp" alt="Find Rail">
</div>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
<div class="container">
<div class="about">
<h1>About Us</h1>
<p>Find Rail is a web application that helps you find trains between two stations and also helps you find the status of your train ticket.</p>
<div class="developerprofile">
<h2>Developed by</h2>
<p>Find Rail is developed by a team of developers who are passionate about trains and technology.</p>
<img src="/images/AgastyaKumarYadav.webp" alt="">
<p>Name: Agastya Kumar Yadav</p>
<p>Email: [email protected]</p>
</div>
</div>
</div>
</body>
</html>