-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
executable file
·161 lines (139 loc) · 6.32 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<title>Patsy Doherty - Services</title>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Boostrap Core CSS-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Main CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- Animate CSS -->
<link href="css/animate.css" rel="stylesheet">
<!-- Google fonts -->
<link href='http://fonts.googleapis.com/css?family=Oxygen:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Qwigley" />
<!-- Font awesome -->
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- Start wrapper -->
<div class="wrapper">
<div class="col-md-12">
<!-- Logo -->
<div class="brand wow fadeIn" data-wow-delay="0.1s"> Patsy Doherty
<div class="title"> - hat designer - </div>
</div>
<!-- Navigation -->
<nav class="navbar navbar-default" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- navbar-brand is hidden on larger screens, but visible when the menu is collapsed -->
<div class="navbar-brand"><a href="">Patsy Doherty</a>
<div class="title"> - hat designer - </div>
</div>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Home<b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href="index.html">Home1</a>
</li>
<li>
<a href="index-work.html">Home2</a>
</li>
</ul>
</li>
<li>
<a href="about.html">About</a>
</li>
<li class="active">
<a href="services.html">Services</a>
</li>
<li>
<a href="collection.html">Collection</a>
</li>
<li>
<a href="resume.html">Resume</a>
</li>
<li>
<a href="news.html">News</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
<!-- /navbar-collapse -->
</nav>
<!-- End nav -->
<!-- Start Services -->
<div class="margin-services">
<div class="col-md-7">
<div class="first-s">
<div class="square wow fadeInDown" data-wow-delay=".5s"></div>
</div>
<img src="img/services1.jpg" alt="photo" class="photo-services"/>
</div>
<div class="col-md-5">
<h4 class="heading-services">Service 1</h4>
<p> If you're willing to be jaunty, to set them at an angle and to walk beneath them with a spring in your stride as if you're only a step away from dancing.</p>
</div>
<div class="col-md-7">
<div class="first-s">
<div class="square wow fadeInDown" data-wow-delay=".5s"></div>
</div>
<img src="img/services2.jpg" alt="photo" class="photo-services"/>
</div>
<div class="col-md-5">
<h4 class="heading-services">Service 2</h4>
<p> If you're willing to be jaunty, to set them at an angle and to walk beneath them with a spring in your stride as if you're only a step away from dancing. </p>
</div>
<div class="col-md-7">
<div class="first-s">
<div class="square wow fadeInDown" data-wow-delay=".5s"></div>
</div>
<img src="img/services3.jpg" alt="photo" class="photo-services"/>
</div>
<div class="col-md-5">
<h4 class="heading-services">Service 3</h4>
<p> If you're willing to be jaunty, to set them at an angle and to walk beneath them with a spring in your stride as if you're only a step away from dancing. </p>
</div>
</div>
<!-- End services -->
<!-- Start footer -->
<div class="footer col-md-6 col-xs-offset-3">
<h5>Copyright 2016
<a href="#"><i class="fa fa-facebook fa-1x icon1"></i></a>
<a href="#"><i class="fa fa-twitter fa-1x icon1"></i></a>
<a href="#"><i class="fa fa-instagram fa-1x icon1"></i></a>
</h5>
</div>
<!-- End footer -->
</div>
<!-- End col-md-12 -->
</div>
<!-- End wrapper -->
<!-- jQuery Version 1.11.0 -->
<script src="js/jquery-1.11.0.js"></script>
<!-- Boostrap JS -->
<script src="js/bootstrap.min.js"></script>
<!-- Smooth scroll JS -->
<script src="js/smoothscroll.js"></script>
<!-- Wow JavaScript -->
<script src="js/wow.js"></script>
<script>
new WOW().init();
</script>
</body>
</html>