-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (103 loc) · 2.95 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<title>Hotel Details - Hilton Chicago</title>
<link href="styles/main.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body>
<header>
<nav>
<button><i class="fas fa-chevron-left"></i> Back</button>
</nav>
<h1 class="page-description">Hotel Details</h1>
<h1>
<a href="/" rel="home"
><img
class="logo"
src="./images/hiltonbrandlogo.png"
alt="Hilton Logo"
/></a>
</h1>
</header>
<main>
<article>
<picture>
<img
class="hotel-img"
sizes="(max-width: 675px) 100vw, 675px"
srcset="
./images/hotelexterior_whkw1k_c_scale,w_200.jpg 200w,
./images/hotelexterior_whkw1k_c_scale,w_358.jpg 358w,
./images/hotelexterior_whkw1k_c_scale,w_481.jpg 481w,
./images/hotelexterior_whkw1k_c_scale,w_675.jpg 675w
"
src="./images/hotelexterior_whkw1k_c_scale,w_675.jpg"
alt="Chicago Hilton - exterior view"
/>
</picture>
<h1 class="hotel-name-header">Hilton Chicago</h1>
<section class="address-section">
<address>
720 South Michigan Avenue<br />
Chicago, Illinois, 60605<br />
<a href="tel:+13129224400">1-312-922-4400</a>
</address>
</section>
<section>
<dl>
<dt>
<button
class="first-accordion-button"
aria-controls="map"
aria-expanded="false"
>
<h2>Map</h2>
<i class="fas fa-chevron-right"></i>
</button>
</dt>
<dd id="map" hidden>
<p>
show map
</p>
</dd>
<dt>
<button aria-controls="photo-gallery" aria-expanded="false">
<h2>Photo gallery</h2>
<i class="fas fa-chevron-right"></i>
</button>
</dt>
<dd id="photo-gallery" hidden>
<p>
show photo-gallery
</p>
</dd>
<dt>
<button
class="last-accordion-button"
aria-controls="photo-gallery"
aria-expanded="false"
>
<h2>Amenities</h2>
<i class="fas fa-chevron-right"></i>
</button>
</dt>
<dd id="photo-gallery" hidden>
<p>
show amenities
</p>
</dd>
</dl>
</section>
</article>
</main>
<footer>
<small>© Hilton</small>
</footer>
</body>
</html>