-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (74 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Title-->
<title>Galaxy Health Insurance</title>
<!--CSS-->
<link rel="stylesheet" href="css/style.css">
<!--Tab Icon link-->
<link rel="icon" href="images/glogoimage.jpeg">
</head>
<body>
<header>
<!--NAVBAR-->
<nav>
<!--Logo-->
<div class="logo">
<a href="index.html"><img src="images/glogoimage.jpeg" height="60" alt="Logo"></a>
</div>
<!--MENU-->
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="product.html">Products</a></li>
</ul>
</div>
<!--BUTTON-->
<button class="hamburger" onclick="toggleMenu()">☰</button>
</nav>
</header>
<main>
<section class="hero">
<h1>Welcome to Galaxy Health Insurance</h1>
<p>Your health is our priority.</p>
</section>
<!-- Landing Page Top Banner Image -->
<section class="banner">
<img src="images/family-health-care-web-banner.jpg" alt="Banner Image">
</section>
</main>
<!--FOOTER-->
<footer>
<p>© 2024 Galaxy Health Insurance</p>
</footer>
<!--Java Script Link-->
<script src="js/main.js"></script>
<!--Speech Synthesiser TTS -->
<script> speechSynthesis.speak(new SpeechSynthesisUtterance("Hello, Welcome to Galaxy Health Insurance.")); </script>
<!--Speech Synthesiser for TTS CHROME Browser-->
<!--
<script src="https://code.responsivevoice.org/responsivevoice.js"></script>
<script>
window.onload = function() {
responsiveVoice.speak("Welcome");
};
</script>
-->
<!--AI Chatbot Bubble Link-->
<script>
window.embeddedChatbotConfig = {
chatbotId: "WD8ZyP9nuI2uGWXV85BxL",
domain: "www.chatbase.co"
}
</script>
<script
src="https://www.chatbase.co/embed.min.js"
chatbotId="WD8ZyP9nuI2uGWXV85BxL"
domain="www.chatbase.co"
defer>
</script>
</body>
</html>