-
Notifications
You must be signed in to change notification settings - Fork 2
/
services.html
127 lines (115 loc) · 5.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Affan - Developer Portfolio</title>
<link rel="icon" href="assests/icon.png" class="rel" />
<link rel="stylesheet" href="style.css" class="rel" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" class="rel" />
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css" rel="stylesheet" />
</head>
<body>
<!-- <div id="preloader"></div> -->
<header>
<nav class="navbar">
<div class="left">Affan's Portfolio</div>
<div class="right">
<ul class="navbar-menu">
<li><a href="index.html">Home</a></li>
<li>
<a href="services.html">Services</a>
</li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="navbar-toggle">
<button id="menu-toggle"><i class="fa-solid fa-list"></i></button>
</div>
</nav>
</header>
<main>
<section>
<h4 class="service-heading" style="color: #a6a1a1">
What i can do for you
</h4>
<h1 class="service-heading">Services</h1>
<div class="service-container">
<div id="service-card">
<img src="assests/webdev.png" />
<h3>Web Development</h3>
<p>
I can make Full-Stack Web Development projects with responsive
web design & i have expertise in Front-end web Development
specially building beautiful user interface
</p>
</div>
<div id="service-card">
<img src="assests/dm.png" />
<h3>Database Management</h3>
<p>
Designing and managing databases using MongoDB, MySQL, or other database systems and Implementing CRUD operations and ensuring data integrity and security.
</p>
</div>
<div id="service-card">
<img src="assests/deploy.png" />
<h3>Deployment Service</h3>
<p>
Easily deploy your website with our all-in-one service! Get fast, secure, and scalable hosting solutions. Whether you're launching a personal blog, an e-commerce site, or a full-scale web application
</p>
</div>
</div>
</section>
</main>
<footer>
<div class="footer">
<div class="footer-container">
<!-- Branding Section with Social Media Links -->
<div class="footer-section footer-brand">
<h3>Affan's Developer Portfolio</h3>
<p>Turning ideas into reality, one line of code at a time.</p>
<div class="footer-social">
<ul>
<li><a href="https://www.instagram.com/mr_affan15/" target="_blank"><i class="fa-brands fa-instagram"></i></a></li>
<li><a href="https://github.com/affancoder" target="_blank"><i class="fa-brands fa-github"></i></a></li>
<li><a href="https://www.youtube.com/@mr_affan15/featured" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
<li><a href="https://www.linkedin.com/in/mdaffanasghar/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://www.hackerrank.com/profile/mdaffancoder" target="_blank"><i class="fa-brands fa-hackerrank"></i></a></li>
<li><a href="https://discord.com/channels/@me" target="_blank"><i class="fa-brands fa-discord"></i></a></li>
</ul>
</div>
</div>
<!-- Quick Links Section -->
<div class="footer-section footer-links">
<h4>Quick Links</h4>
<ul>
<li><a href="index.html"><i class="fa fa-home"></i> Home</a></li>
<li><a href="services.html"><i class="fa fa-cogs"></i> Services</a></li>
<li><a href="projects.html"><i class="fa fa-briefcase"></i> Projects</a></li>
<li><a href="about.html"><i class="fa fa-user"></i> About</a></li>
<li><a href="contact.html"><i class="fa fa-envelope"></i> Contact</a></li>
</ul>
</div>
<!-- Contact Information Section -->
<div class="footer-section footer-contact">
<h4>Contact</h4>
<p><i class="fa fa-phone"></i> +91 93398 28230</p>
<p><i class="fa fa-envelope"></i> affanasgar8@gmail.com</p>
<p><i class="fa fa-map-marker"></i> Kankinara, Kolkata, West Bengal</p>
</div>
</div>
<div class="footer-bottom">
<p>Copyright © affansportfolio.com | All rights reserved</p>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"></script>
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
<script src="app.js"></script>
</body>
</html>