-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
45 lines (45 loc) · 1.54 KB
/
services.html
File metadata and controls
45 lines (45 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Services</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<header>
<h2 class="logo">
<img src="logo.png" alt="Logo" width="50" height="50">
<span>DESIGN DYNAMO</span>
</h2>
<nav class="navigation">
<a href="index.html">Home</a>
<a href="register.html">Register</a>
<a href="about.html">About</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<h1>Our Services</h1>
<h2>What We Offer</h2>
<div class="service">
<h3>Web Development</h3>
<p>We create responsive and modern websites tailored to your needs.</p>
</div>
<div class="service">
<h3>SEO Optimization</h3>
<p>Improve your website's visibility on search engines with our expert SEO services.</p>
</div>
<div class="service">
<h3>Graphic Design</h3>
<p>Our team designs stunning visuals to enhance your brand identity.</p>
</div>
<div class="service">
<h3>Digital Marketing</h3>
<p>Boost your online presence with our comprehensive digital marketing strategies.</p>
</div>
</main>
</body>
</html></div>