-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
106 lines (97 loc) · 3.51 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8>
<meta name=description content="">
<meta name=viewport content="width=device-width, initial-scale=1">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="css/common.css">
<link rel="stylesheet" type="text/css" href="css/service.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Montserrat|Pacifico&display=swap" async>
</head>
<body>
<header>
<div class="top_navigation_container" style="background-color:#112a49;">
<div class="container">
<div class="web_title">
<img src="img/logo.png" alt="">
<span>Three man<br><span id="web_title_line">Web Development</span></span>
</div>
<div class="menu">
<a href="" style="color: orange; border-color:orange; ">Services</a>
<a href="pricing.html">Pricing</a>
<a href="">Design</a>
<a href="">About</a>
<a href=""><button class="topbtn">Contact</button></a>
</div>
</div>
</div>
</header>
<section class="website_dev">
<div class="website_dev_container">
<div class="website_dev_image">
<img src="img/service/websitedev.png">
</div>
<div class="website_dev_content">
<span>Website Development</span>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam accusantium, hic autem, omnis voluptatem itaque et fugit blanditiis soluta quis commodi distinctio nam. Ut tempore </p>
<button>View Designs</button>
</div>
</div>
</section>
<section class="webapp_dev">
<div class="webapp_dev_container">
<div class="webapp_dev_image">
<img src="img/service/webapp.png">
</div>
<div class="webapp_dev_content">
<span>Web App Development</span>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quasi tempora repellendus id adipisci cumque voluptates, sunt, odio enim blanditiis.</p>
<button>View Designs</button>
</div>
</div>
</section>
<section class="wordpress_dev">
<div class="wordpress_dev_container">
<div class="wordpress_dev_content">
<span>Wordpress Websites For fast Update Customers</span>
<img src="img/service/wordpress.png">
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima eligendi tempore placeat tempora autem minus voluptas eum, commodi optio dolor.</p>
<button>View Designs</button>
</div>
</div>
</section>
<section class="management">
<div class="management_container">
<div class="management_content">
<span>Website Management Plans</span>
<img src="img/service/management.png">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Enim corporis nesciunt in, recusandae. Delectus recusandae voluptatum, vel repellendus blanditiis laboriosam. Assumenda adipisci reprehenderit molestiae veritatis suscipit eaque officiis consequatur enim.</p>
</div>
</div>
</section>
<footer style="background-color:#112a49; color: white;">
<div class="footer_container">
<div class="copyright">
<span>Designed and developed by 3 man design Developers</span><br>
<span>Copyright © 3 man 2019</span>
</div>
</div>
</footer>
<section class="hamburger">
<div></div>
<div></div>
<div></div>
</section>
<section class="menu2container">
<section class="menu2">
<a href="service.html">Services</a>
<a href="">Pricing</a>
<a href="">Design</a>
<a href="">About</a>
<a href=""><button class="topbtn">Contact</button></a>
</section>
</section>
<script src="js/common.js"></script>
</body>
</html>