-
Notifications
You must be signed in to change notification settings - Fork 0
/
bedroom.html
90 lines (56 loc) · 2.28 KB
/
bedroom.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--Author:Utsavkumar Patel ,000820474-->
<title>Sandy and Leslie's Apartment</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="apartment.css">
<link rel="stylesheet" href="mobile.css">
<link rel="stylesheet" href="printer.css" media="print">
</head>
<body>
<h1>Sandy and Leslie's Apartment</h1>
<header>
<figure>
<figcaption>
Click a room for a detailed view
</figcaption>
<!-- Image Map Generated by http://www.image-map.net/ -->
<img src="images/apartmentfloorplan.jpg" usemap="#image-map" alt="floorplan">
<map name="image-map">
<area target="rect" alt="Dining Room" title="Dining Room" href="diningroom.html" coords="359,106,461,175" shape="rect">
<area target="rect" alt="Kitchen" title="Kitchen" href="kitchen.html" coords="255,275,381,395" shape="rect">
<area target="poly" alt="Living Room" title="Living Room" href="livingroom.html" coords="525,176,435,175,382,177,391,395,548,391" shape="poly">
<area target="poly" alt="Bedroom 1" title="Bedroom 1" href="bedroom.html" coords="49,6,188,156" shape="rect">
<area target="rect" alt="Bedroom 2" title="Bedroom 2" href="bedroom.html" coords="202,11,351,137" shape="rect">
<area shape="default" href="index.html" alt="floorplan">
</map>
</figure>
</header>
<nav>
<a href="index.html">Apartment</a>
<a href="bedroom.html">Bedroom 1</a>
<a href="bedroom.html">Bedroom 2</a>
<a href="diningroom.html">Dining Room</a>
<a href="kitchen.html">Kitchen</a>
<a href="livingroom.html">Living Room</a>
</nav>
<div class="rooms">
<h5>Bedroom Details</h5>
<figure>
<img src="images/bedroom_lg.jpg"
alt="Bedroom"
>
</figure>
</div>
<br><br>
<footer>
<p>For more information contact:
<a href="mailto:sandyandleslie@example.com">
SandyAndLeslie@example.com
</a>
</p>
<p>© Sandy and Leslie 2020 </p>
</footer>
</body>
</html>