forked from zero-to-mastery/travel-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index1001.html
34 lines (34 loc) · 1.22 KB
/
index1001.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style rel="stylesheet" href="./src/styles/newYorkStyle.css" type="text/css"></style>
</head>
<body>
<div id="root">
<div id="header">
<h1>Travel Guide</h1>
</div>
<div id="content">
<div id="flag">
<img src="https://www.50states.com/flag/image/nunst053.gif" alt="New York">
</div>
<div id="stats">
<h1 id="state">New York</h1>
<ul id="stateInfo">
<li class="centerText">Population: 9,234,641</li>
<li class="centerText">Capital: Albany</li>
<li class="centerText">Call Code: +1</li>
<li class="centerText">Region: Americas</li>
<li class="centerText">Native: American, European</li>
<li class="centerText">TimeZone: GMT-4</li>
<li class="centerText">Temperature: </li>
</ul>
</div>
</div>
</div>
</body>
</html>