forked from designhawg/css-exercise-four
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 697 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 697 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>css exercise four</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="container">
<h1>Modern luxury <span class="emphasis">travel</span></h1>
<div class="preview baku">
<h1>Baku</h1>
</div>
<div class="preview london">
<h1>London</h1>
</div>
<div class="preview madrid">
<h1>Madrid</h1>
</div>
<div class="preview rome">
<h1>Rome</h1>
</div>
</section>
</body>
</html>