-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (91 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WooGG - Silicon Valley VC Fund</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>WooGG</h1>
<nav>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="hero">
<div class="container">
<h2>Woo Great Genius: The Vanguard of Tech Ventures</h2>
<p>At WooGG, we're not just investors; we're pioneers championing the brilliant minds that redefine technological boundaries.</p>
</div>
</section>
<section id="about">
<div class="container">
<h2>About Us</h2>
<p>WooGG is an international venture capital fund focused on empowering technology startups. With a keen eye for potential and a network of industry experts, we help turn visionary ideas into market-leading companies.</p>
</div>
</section>
<section id="portfolio">
<div class="container">
<h2>Our Global Portfolio</h2>
<div class="portfolio-item" style="margin-bottom: 20px;">
<h3 style="margin-bottom: 5px;">SeoulTech AI</h3>
<p>Revolutionizing AI with self-learning algorithms from the heart of Korea's tech hub.</p>
</div>
<div class="portfolio-item" style="margin-bottom: 20px;">
<h3 style="margin-bottom: 5px;">HarborSecure</h3>
<p>Leading the way in next-generation cybersecurity, straight from Hong Kong's vibrant innovation scene.</p>
</div>
<div class="portfolio-item" style="margin-bottom: 20px;">
<h3 style="margin-bottom: 5px;">GreenSky Drones</h3>
<p>Automating reforestation and urban greening with advanced drone technology from Seoul.</p>
</div>
<div class="portfolio-item" style="margin-bottom: 20px;">
<h3 style="margin-bottom: 5px;">MediFuture Health</h3>
<p>Improving patient outcomes with cutting-edge health tech innovations, proudly based in Hong Kong.</p>
</div>
</div>
</section>
<section id="testimonials">
<div class="container">
<h2>Testimonials</h2>
<blockquote>
"WooGG's investment was pivotal for our startup. Their expertise and network have been invaluable to our growth."
<cite>- Startup Founder</cite>
</blockquote>
</div>
</section>
<section id="news">
<div class="container">
<h2>Latest News</h2>
<article>
<h3>WooGG Invests in Groundbreaking Fintech Startup</h3>
<p>WooGG has just announced a significant investment in a fintech startup that is set to disrupt the banking industry.</p>
</article>
<article>
<h3>Portfolio Company Acquired for $250 Million</h3>
<p>One of WooGG's early investments has been acquired in a landmark deal, showcasing the fund's knack for picking winners.</p>
</article>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<p>If you're building something exciting and looking for investment, we'd love to <a href="mailto:info@woogg.com">hear from you</a>.</p>
</div>
</section>
<footer>
<div class="container">
<p>© 2023 WooGG. All rights reserved.</p>
</div>
</footer>
</body>
</html>