-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
51 lines (45 loc) · 1.62 KB
/
Copy pathwork.html
File metadata and controls
51 lines (45 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Work</title>
<link rel="stylesheet" href="workstyle.css">
</head>
<body>
<nav class="navbar">
<h1 class="logo">LOGO</h1>
<ul class="nav-items">
<li class="nav-item"> <a href="project.html">HOME</a></li>
<li class="nav-item"><a href="about.html">ABOUT</a></li>
<li class="nav-item"><a href="work.html">WORK</a></li>
<li class="nav-item"><a href="pricing.html">PRICING</a></li>
</ul>
</nav>
<section class="work-section">
<div class="container">
<h2 class="work-heading">Our Work</h2>
<div class="work-gallery">
<div class="work-item">
<img src="work5.jpg" alt="Work 1">
<h3>Work 1</h3>
<p>Description of Work 1</p>
</div>
<div class="work-item">
<img src="work2.jpg" alt="Work 2">
<h3>Work 2</h3>
<p>Description of Work 2</p>
</div>
<div class="work-item">
<img src="work3.jpg" alt="Work 3">
<h3>Work 3</h3>
<p>Description of Work 3</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<p>© 2024 All rights reserved</p>
</footer>
</body>
</html>