forked from erics273/css-activity-travel-site-styled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (105 loc) · 3.99 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="assets/stylesheets/travel.css"/>
<title>Amazing Travel Site</title>
</head>
<body>
<header>
<div id="logo">
<a href="/home.html">My Travel Site</a>
</div>
<nav>
<ul id="nav-list">
<li class="nav-link">
<a href="/home.html">Home</a>
</li>
<li class="nav-link">
<a href="/about.html">About</a>
</li>
<li class="nav-link">
<a href="/stuff.html">Stuff</a>
</li>
<li class="nav-link">
<a href="/contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<main>
<section>
<div id="hero"></div>
<div id="header-statement">
<h1>Welcome to my travel site</h1>
<p>This site is about places I would like to travel</p>
<h2>Here are some places I would like to visit</h2>
</div>
</section>
<section id="cards" class="page-row">
<div class="card" id="spain">
<h3>Spain</h3>
<a href="http://www.spain.info/en_US/" target="_blank">Spain Tourism Site</a>
</div>
<div class="card" id="italy">
<h3>Italy</h3>
<a href="http://www.italia.it/en/home.html" target="_blank">Italy Tourism Site</a>
</div>
<div class="card" id="aruba">
<h3>Aruba</h3>
<a href="http://www.arubatourism.com/" target="_blank">Aruba Tourism Site</a>
</div>
<div class="card" id="chile">
<h3>Chile</h3>
<a href="http://chile.travel/en/" target="_blank">Chile Tourism Site</a>
</div>
</section>
<section class="page-row" id="travel-table">
<h3>Some information about the places I would like to visit</h3>
<table>
<tr>
<th>Destination</th>
<th>Capital</th>
<th>Official Language</th>
<th>Population (aprox.)</th>
<th>National Bird</th>
</tr>
<tr>
<td>Spain</td>
<td>Madrid</td>
<td>Spanish</td>
<td>46.77 million</td>
<td>Eagle</td>
</tr>
<tr>
<td>Italy</td>
<td>Rome</td>
<td>Italian</td>
<td>59.83 million</td>
<td>Bluebirds</td>
</tr>
<tr>
<td>Aruba</td>
<td>Oranjestad</td>
<td>Dutch</td>
<td>102,911</td>
<td>Aruban Burrowing Owl</td>
</tr>
<tr>
<td>Chile</td>
<td>Santiago</td>
<td>Spanish</td>
<td>17.62 million</td>
<td>Andean condor</td>
</tr>
</table>
</section>
</main>
<footer>
<div id="copyright">© Travel is fun</div>
<div id="social-links">
<a href="http://facebook.com">Facebook</a>
<a href="http://twitter.com">Twitter</a>
</div>
</footer>
</body>
</html>