-
Notifications
You must be signed in to change notification settings - Fork 1
/
sitemap.html
153 lines (133 loc) · 6.15 KB
/
sitemap.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
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sitemap</title>
<!-- Link to the external stylesheet -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="sitemap_style.css">
</head>
<body>
<!-- Header section with logo and navigation links -->
<header>
<div class="logo">
<img src="logo.svg" alt="Logo">
<div class="logo-text">SUSTAINABLE SEAS</div>
</div>
<!-- Navigation bar with links to different pages -->
<nav class="nav-links">
<a href="home.html">Home</a>
<a href="gallery.html">Gallery</a>
<a href="shop.html">Shop</a>
<a href="profile.html">User Profile</a>
<a href="feedback.html">Feedback</a>
<a href="sitemap.html">Sitemap</a>
<a href="team.html">Team</a>
</nav>
</header>
<!-- Main heading for the sitemap page -->
<h1>SiTe MAP</h1>
<!-- SVG element for visual sitemap -->
<svg id="sitemap" viewBox="0 0 1400 1200" xmlns="http://www.w3.org/2000/svg">
<!-- Home -->
<g transform="translate(-100, 0)">
<a href="home.html">
<rect x="650" y="50" width="120" height="60" class="node home"/>
<text x="710" y="85" text-anchor="middle">Home</text>
</a>
<!-- Main branches -->
<line x1="710" y1="110" x2="710" y2="150" class="branch"/>
<line x1="710" y1="150" x2="200" y2="200" class="branch"/>
<line x1="710" y1="150" x2="400" y2="200" class="branch"/>
<line x1="710" y1="150" x2="600" y2="200" class="branch"/>
<line x1="710" y1="150" x2="800" y2="200" class="branch"/>
<line x1="710" y1="150" x2="1000" y2="200" class="branch"/>
<line x1="710" y1="150" x2="1200" y2="200" class="branch"/>
<line x1="710" y1="150" x2="1400" y2="200" class="branch"/>
<!-- Gallery -->
<a href="gallery.html">
<rect x="140" y="180" width="120" height="60" class="node gallery"/>
<text x="200" y="215" text-anchor="middle">Gallery</text>
</a>
<!-- Shop -->
<a href="shop.html">
<rect x="340" y="180" width="120" height="60" class="node shop"/>
<text x="400" y="215" text-anchor="middle">Shop</text>
</a>
<!-- User Profile -->
<a href="profile.html">
<rect x="540" y="180" width="120" height="60" class="node profile"/>
<text x="600" y="215" text-anchor="middle">User Profile</text>
</a>
<!-- Feedback -->
<a href="feedback.html">
<rect x="740" y="180" width="120" height="60" class="node feedback"/>
<text x="800" y="215" text-anchor="middle">Feedback</text>
</a>
<!-- Sitemap -->
<a href="sitemap.html">
<rect x="940" y="180" width="120" height="60" class="node sitemap"/>
<text x="1000" y="215" text-anchor="middle">Sitemap</text>
</a>
<!-- Content -->
<a href="content.html">
<rect x="1140" y="180" width="120" height="60" class="node content"/>
<text x="1200" y="215" text-anchor="middle">Content</text>
</a>
<!-- Student Editors -->
<a href="editors.html">
<rect x="1340" y="180" width="120" height="60" class="node editors"/>
<text x="1400" y="215" text-anchor="middle">Student Editors</text>
</a>
<!-- Content subnodes -->
<line x1="1200" y1="240" x2="1200" y2="280" class="branch"/>
<a href="content1.html">
<rect x="1140" y="280" width="120" height="60" class="node content1"/>
<text x="1200" y="315" text-anchor="middle">Content 1</text>
</a>
<a href="content2.html">
<rect x="1140" y="350" width="120" height="60" class="node content2"/>
<text x="1200" y="385" text-anchor="middle">Content 2</text>
</a>
<a href="content3.html">
<rect x="1140" y="420" width="120" height="60" class="node content3"/>
<text x="1200" y="455" text-anchor="middle">Content 3</text>
</a>
<a href="content4.html">
<rect x="1140" y="490" width="120" height="60" class="node content4"/>
<text x="1200" y="525" text-anchor="middle">Content 4</text>
</a>
<!-- Student Editors subnodes -->
<line x1="1400" y1="240" x2="1400" y2="280" class="branch"/>
<a href="editor1.html">
<rect x="1340" y="280" width="120" height="60" class="node editor1"/>
<text x="1400" y="315" text-anchor="middle">Editor 1</text>
</a>
<a href="editor2.html">
<rect x="1340" y="350" width="120" height="60" class="node editor2"/>
<text x="1400" y="385" text-anchor="middle">Editor 2</text>
</a>
<a href="editor3.html">
<rect x="1340" y="420" width="120" height="60" class="node editor3"/>
<text x="1400" y="455" text-anchor="middle">Editor 3</text>
</a>
<a href="editor4.html">
<rect x="1340" y="490" width="120" height="60" class="node editor4"/>
<text x="1400" y="525" text-anchor="middle">Editor 4</text>
</a>
</g>
</svg>
<!-- Footer section -->
<footer>
<div class="student-name">
<p>Thisakya Pathirathne <br>
<span class="role">Student 4</span>
</p>
</div>
<div class="editor">
<a href="editor4.html">Page Editor</a>
</div>
</footer>
</body>
</html>