-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
65 lines (56 loc) · 2.17 KB
/
Copy pathservices.html
File metadata and controls
65 lines (56 loc) · 2.17 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
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - Arun Roshan</title>
<link rel="stylesheet" href="service.css">
</head>
<body>
<header>
<div class="container">
<h1>Welcome to Arun Roshan's Portfolio</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="achive.html">Achievement</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="blog.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="services">
<div class="container">
<h2 style="margin-top: 2%; margin-bottom: 2%;">Services</h2>
<div class="service">
<h3>Application Development</h3>
<p>Develop robust and scalable applications tailored to your business needs.</p>
</div>
<div class="service">
<h3>Frontend Development</h3>
<p>Create responsive and user-friendly interfaces using modern web technologies.</p>
</div>
<div class="service">
<h3>UI/UX Design</h3>
<p>Design intuitive and engaging user interfaces that enhance user experience.</p>
</div>
<div class="service">
<h3>IoT Development</h3>
<p>Implement IoT solutions to connect devices and enable smart functionalities.</p>
</div>
<a href="contact.html" class="btn">Contact Us</a> <!-- Contact Us button -->
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Arun Roshan. All rights reserved.</p>
</div>
</footer>
<script src="service.js"></script>
</body>
</html>