forked from niteshKrr/Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
126 lines (109 loc) · 5.64 KB
/
Copy pathservices.html
File metadata and controls
126 lines (109 loc) · 5.64 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font_awesome.min.css">
<link rel="stylesheet" href="custom_css/style3.css">
<title>Services</title>
</head>
<body>
<!-- navbar start -->
<nav class="navbar navbar-expand-lg navbar-light bg-light shadow-sm sticky-top">
<div class="container-fluid">
<a class="navbar-brand mb-0 h1 text-danger fs-4" href="./index.html">N.K</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end fs-5 " id="navbarNav">
<ul class="navbar-nav me-5">
<li class="nav-item me-5">
<a class="nav-link " href="./index.html">Home</a>
</li>
<li class="nav-item me-5">
<a class="nav-link" href="./about.html">About</a>
</li>
<li class="nav-item me-5">
<a class="nav-link active text-danger text-decoration-underline" aria-current="page" href="./services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link " href="./contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- navbar end -->
<!-- contact page start -->
<section class="contact-page py-5">
<h1 class="text-center fw-bold">What I Do</h1>
<div class="container py-5">
<div class="row text-center">
<div class="col">
<div class="card shadow p-3 mb-5 bg-body rounded" style="width: 20rem;">
<div class="card-body ">
<h1 class="card-title "><i class="fas fa-code text-danger "></i></h1>
<h6 class="card-subtitle mb-2">Web Development</h6>
<p class="card-text text-muted">I have done lots of projects regarding webdevlopment using HTML,CSS,JavaScript and frameworks like Django,React,Bootstrap.</p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow p-3 mb-5 bg-body rounded" style="width: 20rem;">
<div class="card-body">
<h1 class="card-title"><i class="fas fa-lightbulb text-danger"></i></h1>
<h6 class="card-subtitle mb-2">Creative Design</h6>
<p class="card-text text-muted">I have designed web applications according to customer needs with the help of HTML,CSS,JavaScript and Bootstrap. </p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow p-3 mb-5 bg-body rounded" style="width: 20rem;">
<div class="card-body">
<h1 class="card-title"><i class="fas fa-database text-danger"></i> </h1>
<h6 class="card-subtitle mb-2">Database Design</h6>
<p class="card-text text-muted">I have designed lots of Databases which are easy to understand for anyone and work properly for the applications.</p>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row text-center">
<div class="col">
<div class="card shadow p-3 mb-5 bg-body rounded" style="width: 20rem;">
<div class="card-body">
<h1 class="card-title"><i class="fab fa-android text-danger"></i></h1>
<h6 class="card-subtitle mb-2">Android Development</h6>
<p class="card-text text-muted">I am work with my team regarding Android Development as a backend developer in real time chatting application named 'S_Chat'.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- contact page end -->
<!-- footer start -->
<footer class="container-fluide bg-light shadow-sm text-muted">
<div class="container">
<div class="row py-3">
<div class="col-md-8">
<span>Follow me : </span>
<a href="https://twitter.com/nkumar35101" target="blank"> <i class="fab fa-twitter me-3 ms-3 text-danger"></i> </a>
<a href=" https://www.instagram.com/nitesh_chaurasiya_2.0/" target="blank"> <i class="fab fa-instagram me-3 text-danger"></i> </a>
<a href="https://www.linkedin.com/in/nitesh-kumar-57b598204/" target="blank"> <i class="fab fa-linkedin me-3 text-danger"></i> </a>
<a href="https://github.com/niteshKrr" target="blank"> <i class="fab fa-github text-danger"></i> </a>
</div>
<div class="col-md-4">
<small>Designed By : Nitesh Kumar</small>
</div>
</div>
</div>
</footer>
<!-- footer end -->
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html>