forked from snigudkar/headstarter-chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing_page.html
26 lines (25 loc) · 956 Bytes
/
landing_page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infinity Answers</title>
<link rel="stylesheet" href="landing_page.css">
</head>
<body>
<div class="hero-section">
<div class="hero-content">
<h1 class="hero-title">Infinity Answers</h1>
<p class="hero-subtitle">Your AI-powered assistant for everything</p>
<a href="#about" class="cta-button">Get Started</a>
</div>
</div>
<section id="about" class="about-section">
<div class="about-content">
<h2>About Infinity Answers</h2>
<p>Our chatbot is designed to answer any and every question you might have. It's your ultimate assistant for getting quick and accurate information.</p>
<a href="index.html" class="secondary-button">Start Chatting</a>
</div>
</section>
</body>
</html>