-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.html
72 lines (70 loc) · 3.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Site Map</title>
<link rel="stylesheet" href="styles_main.css">
<link rel="stylesheet" href="sitemap.css">
</head>
<body>
<!--nav bar-->
<ul class="navbar">
<li><img src="/images/web_logo_main.png" alt="Wonder Ceylon Logo" class="siteLogo" style="width: 290px;"/></li>
<li><a href="index.html">Home</a></li>
<li><a href="sitemap.html">Site Map</a></li>
<li><a href="#">Shop</a></li>
<li><a href="quiz.html">Quiz</a></li>
<li><a href="comments.html">Comments</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about.html">Meet the Team</a></li>
</ul>
<!--site map-->
<h1>Site Map</h1>
<div class="svg-container">
<svg class="svg" width="1400" height="600">
<!--svg code-->
<a href="home.html">
<circle class="circle" cx="600" cy="100" r="50" />
<text class="word" x="600" y="100" text-anchor="middle" dominant-baseline="middle">Home</text>
</a>
<a href="sitemap.html">
<circle class="circle" cx="100" cy="400" r="50" />
<text class="word" x="100" y="400" text-anchor="middle" dominant-baseline="middle">Sitemap</text>
</a>
<a href="shop.html">
<circle class="circle" cx="280" cy="400" r="50" />
<text class="word" x="280 " y="400" text-anchor="middle" dominant-baseline="middle">Shop</text>
</a>
<a href="Quiz.html">
<circle class="circle" cx="460" cy="400" r="50" />
<text class="word" x="460" y="400" text-anchor="middle" dominant-baseline="middle">Quiz</text>
</a>
<a href="comments.html">
<circle class="circle" cx="781" cy="400" r="50" />
<text class="word" x="781" y="400" text-anchor="middle" dominant-baseline="middle">Comments</text>
</a>
<a href="gallery.html">
<circle class="circle" cx="965" cy="400" r="50" />
<text class="word" x="965" y="400" text-anchor="middle" dominant-baseline="middle">Gallery</text>
</a>
<a href="meettheteam.html">
<circle class="circle" cx="1140" cy="400" r="50" />
<text class="word" x="1140" y="400" text-anchor="middle" dominant-baseline="middle">Team</text>
</a>
<!--line-->
<line x1="1142" y1="200" x2="100" y2="200" style="stroke:rgb(255, 255, 255);stroke-width: 4;"/>
<line x1="100" y1="198" x2="100" y2="350" style="stroke:rgb(255, 255, 255);stroke-width: 4;"/>
<line x1="280" y1="200" x2="280" y2="350" style="stroke:rgb(255, 255, 255);stroke-width: 4;"/>
<line x1="460" y1="200" x2="460" y2="350" style="stroke:rgb(255, 255, 255);stroke-width: 4;"/>
<line x1="600" y1="200" x2="600" y2="150" style="stroke:rgb(255, 255, 255);stroke-width: 4;"/>
<line x1="780" y1="200" x2="780" y2="350" style="stroke:rgb(255, 255, 255);stroke-width: 4;"/>
<line x1="965" y1="200" x2="965" y2="350" style="stroke:rgb(255, 255, 255);stroke-width: 4;"/>
<line x1="1140" y1="200" x2="1140" y2="350" style="stroke:rgb(255, 255, 255);stroke-width: 4;"/>
</svg>
</div>
<div class="footerPrimary">
<p class="footer_text">Wonder Ceylon is your gateway to the soul of Sri Lanka.
<br>Visit every page of our website to get to know about this beautiful paradise Island before your next visit.</p>
</div>
</body>
</html>