-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexampleOfDiv.html
More file actions
29 lines (28 loc) · 1.03 KB
/
Copy pathexampleOfDiv.html
File metadata and controls
29 lines (28 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Styled Sections</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<!-- Navigation Section -->
<nav class="navbar">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
<!-- Content Section -->
<div class="content-section">
<div class="text-content">
<h2>About Our Work</h2>
<p>We are committed to delivering high-quality services to our clients. Our mission is to innovate and excel in everything we do. Our team works tirelessly to ensure the satisfaction of every customer, blending creativity and professionalism to achieve outstanding results.</p>
</div>
<div class="image-content">
<img src="https://via.placeholder.com/300" alt="Placeholder Image 1">
<img src="https://via.placeholder.com/300" alt="Placeholder Image 2">
</div>
</div>
</body>
</html>