forked from rbunge-nsc/websitedemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaipei101.html
58 lines (48 loc) · 1.9 KB
/
taipei101.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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to the Taiwan!</title>
<link rel="stylesheet" type="text/css" href="styles/branchlevel.css">
<style>
img{
width:600px;
height:400px;
border:none;
color:blue;
border-radius:20px;
vertical-align: top;
line-height: 50px;
text-align: center;
}
.ulclass{
display: inline-block;
}
a {
color: lightgreen;
}
li::marker {
color: lightgreen;
}
</style>
</head>
<body style="background-color: black;">
<h1><center><font color = "lightgreen">TAIPEI 1O1</font></center></h1>
<center><img src = "images/taipei101.jpg" alt="1-O-1" onmouseover="showAlt(this)" onmouseout="hideAlt(this)"></center>
<figcaption style="color: lightskyblue;"><center>The Tallest Building in Taiwan</center></figcaption>
<center><h7 style="color: orange;">Extremly Beautiful At Night</h7></center>
<center><p id="alttext" style="font-size:50px; color: white"></p></center>
<p><center><font color = "white">Background: Taipei 101 is a super high-rise skyscraper located in Taipei City, Taiwan, with a height of 509.2 meters,
101 floors above ground and 5 floors underground. Since its completion,
it has become one of the important landmarks and sightseeing spots in Taipei.
It is the tallest building in Taiwan and the only building with a height of more than 500 meters and more than 100 floors.
It once held the record of the tallest building in the world from December 1, 2004 to January 7, 2010 .</font></center></p>
<div>
<center><ul class="ulclass">
<li><a href="https://en.wikipedia.org/wiki/Taiwan">Taiwan wiki</a></li>
<li><a href="https://en.wikipedia.org/wiki/Taipei_101">Taipei_101 wiki</a></li>
<li><a href="index.html">Table of Contents</a></li>
</ul></center>
</div>
<script src="scripts/myscripts.js"></script>
</body>
</html>