-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
62 lines (62 loc) · 2.21 KB
/
service.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
<head>
<style>
body{
background-color: rgb(236, 235, 235);
}
.header{
text-align: center;
padding: 20px;
font-size: 50px;
background-color: white;
}
.service-box{
box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
width: 50%;
margin-left: 25%;
padding: 10px;
padding-left: 50px;
padding-right: 50px;
}
.service-box:hover{
box-shadow: 0px 1px 13px rgba(27, 27, 27, 0.705);
background-color: white;
border-radius: 30px;
}
</style>
</head>
<body>
<script>
window.alert('This Page is about our Services')
</script>
<h1 class="header">Service</h1>
<div class="container">
<div class="service-box ">
<div >
<h4 >Video Editing</h4>
</div>
<p>I have 4 years of experience with adobe premiere pro, Adobe After Effects and animiz, I have created a lots of video using these softwares</p>
<a href="">Read More</a>
</div>
<div class="service-box ">
<div >
<h4 >Photo Editing</h4>
</div>
<p>I have a lots of experience in photo editing and Photography, You can check my photos on my instagram profile the link of which is below</p>
<a href="">Read More</a>
</div>
<div class="service-box ">
<div >
<h4 >Vector illustration</h4>
</div>
<p>I have also experience with Adobe illustrator. Through which i have created about 50 Vector illustration</p>
<a href="">Read More</a>
</div>
<div class="service-box ">
<div >
<h4 >App Development</h4>
</div>
<p>I have experience in <a style="text-decoration: none; " href="https://wwww.flutter.dev">Flutter</a>. which is an open source Sdk(Software development kit) created by <a href="https://www.google.com">Google</a>. Which is using dart language for cross platform apps</p>
<a href="">Read More</a>
</div>
</div>
</body>