-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
54 lines (44 loc) · 2.66 KB
/
Copy pathabout.html
File metadata and controls
54 lines (44 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - News Insight</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<nav>
<div class="logo">News Insight</div>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="login.html">login</a></li>
</ul>
</nav>
</header>
<!-- Same header as index.html -->
<main>
<section class="about-section">
<div class="about-header">
<h1>About Us</h1>
<img src="https://images.unsplash.com/photo-1600880292203-757bb62b4baf" alt="Team Photo">
</div>
<div class="about-content">
<h2>Welcome to News Insight</h2>
<p>Welcome to News Insight, your go-to destination for insightful and up-to-date news across technology, business, healthcare, and space science. We believe in the power of knowledge and strive to bring you the latest developments, trends, and breakthroughs shaping our world.</p>
<h2>Our Mission</h2>
<p>Our mission is to provide a comprehensive platform where curiosity meets clarity. Whether you're a tech enthusiast, a business professional, a healthcare advocate, or a space science dreamer, we’ve got you covered. From cutting-edge innovations and industry disruptions to groundbreaking discoveries and expert analyses, we curate content that informs, inspires, and empowers.</p>
<p>At News Insight, we are passionate about bridging the gap between complex topics and everyday understanding. Our team of writers and researchers is dedicated to delivering accurate, engaging, and thought-provoking stories that matter.</p>
<h2>Join Us</h2>
<p>Join us on this journey as we explore the ever-evolving landscapes of technology, business, healthcare, and space science. Together, let’s stay informed, stay curious, and stay ahead.</p>
<p>News Insight – Where the future unfolds, one story at a time.</p>
</div>
</div>
</section>
</main>
<!-- Footer will be the same across all pages -->
</body>
</html>