-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (56 loc) · 1.94 KB
/
Copy pathindex.html
File metadata and controls
57 lines (56 loc) · 1.94 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WebTech - Chat with History's Greatest Minds</title>
<link rel="stylesheet" href="home.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<div class="navbar">
<div class="logo"><img src="logo.svg" alt="" /></div>
<div class="nav-right">
<ul class="nav-links">
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<div class="auth-buttons">
<a href="login.html" class="login-btn">Login</a>
<a href="signup.html" class="signup-btn">Sign Up</a>
</div>
</div>
</div>
</header>
<main>
<div class="content-wrapper">
<div class="image-section">
<img src="Group 5.svg" alt="Group 5" />
</div>
<div class="text-section">
<h1>Chat with History's Greatest Minds of all time</h1>
<div class="contain_p">
<p>
Welcome to <span class="highlight">e3.ai</span> – where history
comes alive!
</p>
<p>
Chat with iconic figures from the past, dive into their stories,
and learn directly from the minds that shaped our world.
</p>
</div>
<a href="signup.html" class="cta-btn"
>Try It Now
<p class="free">- It's Free!</p></a
>
</div>
</div>
</main>
</body>
</html>