-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPetra.html
124 lines (117 loc) · 3.37 KB
/
Petra.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=divice-width,initial-scale=1.0">
<title>Petra</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function()
{
});
</script>
<style>
body{
background-color:yellow;
}
.Homenav{
text-decoration:none;
color:black;
text-align:center;
}
.nav{
text-decoration:none;
color:red;
}
.footer{
text-align:center;
}
.Homenav:hover{color:blue;}
.Homenav:before{color:black;}
.syke{border:5px solid blue; animation: textanimation 3s infinite;}
<!--Nav Bar-->
ul{list-style-type:none; margin:0; padding:0;}
li{display:inline-block; padding-top:5px; position:relative; margin-left:0px; padding-bottom:5px;}
nav a:hover{color:blue;}
nav a:hover::before{width:100%;}
Nav a {text-decoration:none; color:red; text-transform:uppercase; font-size:14px}
nav a::before{display:block; background-color:red; position:absolute; width:0%; height:5px; top:0; transition: all ease-in-out 250ms;}
nav{text-align:center;}
@keyframes textanimation{
0%{background-color:lightblue;}
25%{background-color:red;}
50%{background-color:green;}
75%{background-color:pink;}
100%{background-color:orange;}
}
.lapiz{
background-color:purple
border: 5px solid blue;
width:100px;
height:100px;
position:absolute;
animation:rectanimation 5s infinite
}
@keyframes rectanimation{
0%{left:0px;}
25%{left:500px;}
50%{left:1000px;}
75%{left:500px;}
100%{left:0px;}
}
.diagla{animation:stfoftt 3s infinite;}
@keyframes stfoftt{
0%{background-color:whitesmoke;}
25%{background-color:orange;}
50%{background-color:yellow;}
75%{background-color:green;}
100%{background-color:purple;}
}
</style>
</head>
<body>
<div class="header">
<a href="index.html" class="Homenav"><h1>Seven Wonders of the World</h1></a>
<div class="diagla">
<hr>
<nav>
<ul class="nav">
<li class="gg"><a href="Great Wall Of China.html">Great Wall Of China</a> </li>
<li><a href="Taj Mahal.html">Taj Mahal</a> </li>
<li><a href="Colosseum.html">Colosseum</a> </li>
<li><a href="Christ the Redeemer.html">Christ the Redeemer</a> </li>
<li><a href="Chichen Itza.html">Chichen Itza</a> </li>
<li><a href="Petra.html">Petra</a> </li>
<li><a href="Machu Picchu.html">Machu Picchu</a> </li>
</ul>
</nav>
<hr>
</div>
<center><h2>Petra</h2></center>
</div>
<center>
<div class="middle">
<table>
<tr>
<td>
<div class="syke">
Petra is located in southern Jordan.<br>The area around Petra has been inhabited from as early as 7000 BC, and the Nabataeans might have settled in what would become <br>the capital city of their kingdom as early as the 4th century BC. Petra is home to over 600 tombs.<br>
The name Petra has Greek roots.
</div>
</td>
<tr>
<td>
<iframe width="560" height="315" src="https://www.youtube.com/embed/n5QdKNyrpWA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</td>
</tr>
</table>
</div>
</center>
<br>
<div class="footer">
<a href="https://en.wikipedia.org/wiki/Petra" target="_blank">Click here</a> to know more about Petra
</div>
<div class="lapiz"></div>
</body>
</html>