-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.47 KB
/
Copy pathindex.html
File metadata and controls
43 lines (39 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Our Platform</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="welcome-container">
<!-- Left Side: Content -->
<main class="content-side">
<header class="logo">
<span>Core</span>Platform
</header>
<div class="hero-text">
<h1>Simplify your workflow in one clean workspace.</h1>
<p>Connect your tools, automate your daily tasks, and collaborate with your team in real-time. No code required.</p>
<div class="cta-group">
<a href="#" class="btn btn-primary">Get Started Free</a>
<a href="#" class="btn btn-secondary">Watch Demo</a>
</div>
</div>
<footer class="social-proof">
<p>Trusted by forward-thinking teams everywhere</p>
<div class="logos">
<span class="company">Acme</span>
<span class="company">Globex</span>
<span class="company">Initech</span>
</div>
</footer>
</main>
<!-- Right Side: Visual Graphic -->
<aside class="visual-side">
<div class="abstract-shape"></div>
</aside>
</div>
</body>
</html>