-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgra.html
More file actions
189 lines (141 loc) · 3.74 KB
/
Agra.html
File metadata and controls
189 lines (141 loc) · 3.74 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<html>
<head>
<title>Agra</title>
<style>
*{
margin: 0; padding: 0;
}
.five{
display:block;
}
section img{
border: 2px solid black;
margin:14px 15px;
width: 945px;
height:730px;
}
.head{
padding: 0px 0px;
height: auto;
display:flex;
background:#E34141;
color:#FFFFFF;
align-items: center;
justify-content: center;
border:2px solid #000000;
position:sticky;
top:0;
}
.head .a{
display: flex;
align-items:center;
width:50%;
margin:5px 7px;
}
.head .a img{
height:30px; width:30px;
border: 2px solid #52D2E7;
border-radius: 10px;
margin-right: 7px;
}
.head .b{
display:flex;
width:50%;
padding:0px 15px;
margin-left:120px;
}
header button{
margin-left:20px;
border: 2px solid #2EE3EB;
border-radius: 5px;
background:black;
height:24px;
text-transform: uppercase;
}
header button a{
text-decoration:none;
color:white;
padding:2px;
}
header form{
margin-left: 20px;
display:flex;
}
header form input{
margin-left: 20px;
height:24px;
border:2px solid #2EE3EB;
border-radius:5px;
}
header form button{
color:white;
padding:2px 7px;
margin-left: 2px;
}
header form button:hover{
background:#FAFAFA;
color:#000000;
}
.para{
border:3px solid black;
padding: 0px 15px;
margin: 14px 15px;
}
footer{
background:red;
color:yellow;
justify-content: center;
align-items: center;
padding:5px 50px;
border:2px solid black;
}
footer .copyright{
width: 400px;
display:flex;
margin:auto;
}
</style>
</head>
<body bgcolor="skyblue">
<header class="head">
<div class="a">
<img src="Taj-Mahal.jpg">
<h1>Agra</h1></div>
<div class="b"><div>
<button> <a href="travel and tourism.html">Home</a></button>
</div>
<div>
<button type="button"> <a href="mailto:Ayush.coolzone6244@gmail.com?subject=my problem&body=write your problem">contact us</a></button>
</div>
<form>
<input type="email" placeholder="submit your email"><button type="submit">SUBMIT</button>
</form>
</div>
</header>
<section class="five">
<div>
<img src="Taj-Mahal.jpg" style="border:solid">
</div>
<div>
<img src="main_gateway.jpg">
</div>
<div class="para">
<h6>
<li>Agra is a major tourist destination because of its many Mughal-era buildings, most notably the Taj Mahal, Agra Fort and Fatehpur Sikri, all of which are UNESCO World Heritage Sites.
<hr>
<br><li>
Agra is included on the Golden Triangle tourist circuit, along with Delhi and Jaipur; and the Uttar Pradesh Heritage Arc, a tourist circuit of Uttar Pradesh, along with Lucknow and Varanasi. Agra is in the Braj cultural region.
<hr>
<br><li>Website owner name : Ayush Gupta
</h6>
</div>
</section>
<footer>
<div class="copyright">
copyright 2021 © all rights reserved
</div>
</footer>
<!---------script--------->
<script src="Agra.js"> </script>
</body>
</html>