-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (118 loc) · 4.38 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="/assets/images/favicon.png"
type="image/x-icon"
/>
<!-- CSS -->
<link rel="stylesheet" href="/assets/css/style.css" />
<link rel="stylesheet" href="/assets/css/css-pages/home.css">
<!-- Scripts -->
<script
type="module"
src="/assets/js/scriptComponents/caseOfLoggedIn.js"
></script>
<script type="module" src="/assets/js/main.js"></script>
<title>Home</title>
</head>
<body>
<header>
<nav>
<!-- Logo -->
<div id="logo">
<a href="/">
<img src="/assets/images/Logo.png" alt="HotView Labs Logo" />
</a>
</div>
<div class="nav-element-wrapper">
<!-- Navigation -->
<ul>
<li><a href="/">Home</a></li>
<li><a href="/post/blog-feed.html">Blog</a></li>
<li>
<a id="registerBtn" href="/account/register.html">Register</a>
</li>
<li><a id="loginBtn" href="/account/login.html">Log in</a></li>
</ul>
</div>
<!-- Mobile Menu -->
<div class="burger-menu">
<span></span>
<span></span>
<span></span>
</div>
<div class="offscreen-menu">
<ul class="offscreen-nav">
<li><a href="/">Home</a></li>
<li><a href="/post/blog-feed.html">Blog</a></li>
<li>
<a id="offscreen-loginBtn" href="/account/login.html">Log in</a>
</li>
<li>
<a id="offscreen-registerBtn" href="/account/register.html"
>Register</a
>
</li>
</ul>
</div>
</nav>
</header>
<main>
<section>
<h1 id="hero-title">HotView Labs</h1>
<p id="about-us-p">
<span id="text-bold">At</span> HotView Labs, we are at the forefront
of Tech Research and Development, delivering cutting-edge insights to
industry leaders. Our mission is simple: to provide the most accurate,
up-to-date insights that drive innovation in the tech world.
</p>
<div class="img-wrapper">
<img
id="hero-img"
src="/assets/images/hero-img.jpg"
alt="Tech Research"
/>
</div>
<p id="about-us-p">
With a dedicated team of 30 expert analysts, we explore emerging
technologies, market trends, and disruptive innovations. We work with
global tech firms, startups, and research institutions to uncover
valuable data that fuels informed decision-making. Our research covers
a wide range of fields, including artificial intelligence,
cybersecurity, cloud computing, and blockchain. By leveraging advanced
analytics and industry expertise, we transform complex data into
actionable insights. At HotView Labs, we believe in thought
leadership.
</p>
<p id="about-us-p">
Our blog is a hub for in-depth articles, expert opinions, and
data-driven reports. We break down complex tech topics into clear,
digestible content, making innovation accessible to everyone. Whether
you’re a tech executive, entrepreneur, or enthusiast, our blog equips
you with the knowledge to stay ahead of the curve. We don’t just
report on trends—we analyze their impact, predict future developments,
and offer strategic insights.
</p>
<p id="about-us-p">
With a global reach, our insights influence key decisions in some of
the most innovative companies worldwide. We thrive on curiosity,
pushing the boundaries of what’s possible in technology. Stay
connected with us for expert analysis, exclusive research, and
thought-provoking discussions. Join our growing community of tech
leaders who rely on HotView Labs for the latest in innovation.
</p>
<p id="about-us-p">
🚀 Empowering the future of technology—one insight at a time.
</p>
</section>
</main>
<!-- Footer -->
<footer>
<p>© 2025 HotView Labs. All rights reserved.</p>
</footer>
</body>
</html>