-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst_floor.html
More file actions
36 lines (35 loc) · 1.12 KB
/
first_floor.html
File metadata and controls
36 lines (35 loc) · 1.12 KB
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
<!DOCTYPE html>
<html>
<head>
<title>
FIRST FLOOR
</title>
<link rel="stylesheet" href="first_floor.css">
</head>
<body>
<div class="class1left">Classroom</div>
<div class="class2left">Classroom</div>
<div class="class3left">Classroom</div>
<div class="stair1">Stairs
<nav>
<a class="link" href="ground_floor.html">ground floor</a><br>
<a class="link" href="second_floor.html">second floor</a>
</nav>
</div>
<div class="washroom">Washroom</div>
<div class="staffroom">Staff Room</div>
<div class="class1right">Classroom</div>
<div class="class2right">Classroom</div>
<div class="lab">Lab</div>
<div class="openspace">Open Space</div>
<div class="conferenceroom">Conference Room</div>
<div class="stairs2">Stairs
<nav>
<a class="link" href="ground_floor.html">ground floor</a>
<a class="link" href="second_floor.html">second floor</a>
</nav>
</div>
<div class="examsec">Examination Section</div>
<div class="academic">Academic Section</div>
</body>
</html>