-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
55 lines (55 loc) · 3.25 KB
/
services.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<div class="container">
<div class="sidebar sidebarGo">
<nav class="border-white">
<ul>
<li class="border-white"><a href="index.html"><i class="fa-solid fa-house"></i> Home</a></li>
<li class="border-white"><a href="about.html"><i class="fa-solid fa-user"></i> About Me</a></li>
<li class="border-white"><a href="services.html"><i class="fa-solid fa-briefcase"></i> Services</a></li>
<li class="border-white"><a href="blog.html"><i class="fa-solid fa-newspaper"></i> Blog</a></li>
<li class="border-white"><a href="contact.html"><i class="fa-solid fa-envelope"></i> Contact Me</a></li>
</ul>
</nav>
</div>
<div class="main">
<div class="hamburger">
<img src="img/ham.png" class="ham" width="30px" alt="">
<img src="img/cross.png" class="cross" width="30px" alt="">
</div>
<div class="serviceContainer">
<h1>Services</h1>
<div class="serviceItem">
<h2>Frontend Developer</h2>
<p>I focus on writing clean, efficient code that enhances accessibility and user experience across all devices. I enjoy collaborating closely with designers, back-end developers, and stakeholders to create interfaces that not only look great but function effortlessly. Committed to staying on the cutting edge of front-end technologies, I continuously explore advancements that elevate the quality and interactivity of my projects.</p>
<div class="tech">
<h3>Tech Stack</h3>
<img src="img/html.png" width="40px" alt="html">
<img src="img/css.png" width="40px" alt="css">
<img src="img/javascript.png" width="40px" alt="js">
<img src="img/bootstrap.png" width="40px" alt="bootstrap">
</div>
</div>
<div class="serviceItem">
<h2>Backend Developer</h2>
<p>My approach to backend development prioritizes clean, scalable code that powers reliable and responsive applications. I enjoy partnering with design and front-end teams to create solutions that seamlessly bridge user interfaces and server-side logic. By staying engaged with evolving technologies and best practices, I am committed to enhancing performance, security, and long-term maintainability in all my work.</p>
<div class="tech">
<h3>Tech Stack</h3>
<img src="img/php.png" width="60px" alt="php">
<img src="img/nodejs.png" width="60px" alt="nodejs">
</div>
</div>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>