-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (97 loc) · 3.91 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation -->
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#ai-chatbot">AI Chatbot</a></li>
<li><a href="#power-bi-dashboard">Power BI Dashboard</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
<!-- Homepage -->
<section id="home" class="section">
<div class="container">
<h1>Welcome to Interactive Website</h1>
<p>This website offers an AI chatbot for document summarization and a Power BI dashboard integration.</p>
<p>Our AI chatbot can help you quickly summarize documents and provide insights.</p>
<a href="#ai-chatbot" class="btn">Try AI Chatbot</a>
<p>Explore the Power BI dashboard to gain valuable insights from your data.</p>
</div>
</section>
<!-- AI Chatbot Page -->
<section id="ai-chatbot" class="section">
<div class="container">
<h2>AI Chatbot</h2>
<p>Interact with our AI chatbot to get document summaries and insights.</p>
<p>Use the search bar below to query the AI for document summaries.</p>
<!-- Search bar -->
<input type="text" id="searchBar" placeholder="Enter your query...">
<button id="searchButton" class="btn">Search</button>
<!-- Example queries and results -->
<div id="exampleQueries">
<h3>Example Queries:</h3>
<ul>
<li>Query 1</li>
<li>Query 2</li>
<li>Query 3</li>
</ul>
</div>
<div id="results">
<!-- Results will be dynamically populated here -->
</div>
</div>
</section>
<!-- Power BI Dashboard Page -->
<section id="power-bi-dashboard" class="section">
<div class="container">
<h2>Power BI Dashboard</h2>
<p>Navigate and interact with our Power BI clickable dashboard.</p>
<p>Gain insights and visualize your data in real-time.</p>
<!-- Embedded Power BI dashboard -->
<div id="powerBiDashboard">
<!-- Power BI dashboard will be embedded here -->
</div>
</div>
</section>
<!-- Contact Page -->
<section id="contact" class="section">
<div class="container">
<h2>Contact Us</h2>
<p>Have questions or feedback? Reach out to us!</p>
<!-- Contact form -->
<form action="#" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section>
<!-- About Page -->
<section id="about" class="section">
<div class="container">
<h2>About Us</h2>
<p>Learn more about the creators of this website.</p>
<p>We are passionate about providing innovative solutions to our users.</p>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Interactive Website. All rights reserved.</p>
</footer>
<!-- Script to handle AI chatbot functionality -->
<script src="script.js"></script>
</body>
</html>