-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestimonials.html
138 lines (138 loc) · 6.23 KB
/
testimonials.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
<!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">
<title>Testimonials | Venkateshwara Studios</title>
<!--Static stylesheet-->
<link rel="stylesheet" href="./css/static.css">
<!--Transition stylesheet-->
<link rel="stylesheet" href="./css/transitions.css">
<!--Font awesome web application cdn-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--Google fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap" rel="stylesheet">
<!--Font awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body class="test-body">
<!--Top nav start-->
<div class="navbar">
<img src="./images/removebg-preview1.png" alt="Logo">
<ul class="nav-list">
<li class="nav-options"><a href="index.html">Home</a></li>
<li class="nav-options"><a href="about.html">About us</a></li>
<li class="nav-options" id="dropdown"><a href="#">Photo works</a>
<div class="dropdown-content">
<a href="wedding.html">Wedding</a>
<a href="#kids.html">Kids</a>
</div></li>
<li class="nav-options"><a href="testimonials.html">Testimonials</a></li>
</ul>
<a href="about.html#form-enquire"><button class="enquire-hp">Enquire Now</button></a>
</div>
<!--Content in testimonials start-->
<div class="main-cnt-test">
<div class="main-cnt-test-inner">
<h1>What our clients are saying:</h1>
<!--Reviews section start-->
<div class="reviews">
<!--First box start-->
<div>
<span class="open">“</span>
<p>Wow! The Studio created a unique pin that other companies said
couldn’t be made.
It is incredible and we are thrilled with the workmanship.</p>
<span class="close">”</span>
<div class="review-down-sec">
<img src="./reviews/p1.png" alt="person1">
<h2>-Mrs.AAA</h2>
</div>
</div>
<!--First box end-->
<!--Second box start-->
<div>
<span class="open">“</span>
<p>Wedding album was superb and the
photos were neat and good.
The studio's members are very much interactive and friendly.
</p>
<span class="close">”</span>
<div class="review-down-sec">
<img src="./reviews/p2.png" alt="person2">
<h2>-Mrs.BBB</h2>
</div>
</div>
<!--Second box end-->
<!--Third box start-->
<div>
<span class="open">“</span>
<p>Very pleased with services they are offering.
Helps us lot to develop business .
Promotional products made
by them are fantastic.
</p>
<span class="close">”</span>
<div class="review-down-sec">
<img src="./reviews/p3.png" alt="person2">
<h2>-Mrs.CCC</h2>
</div>
</div>
<!--Third box end-->
</div>
<!--Reviews section end-->
<!--Reviews part2 start-->
<div class="reviews1">
<!--First box start-->
<div>
<span class="open">“</span>
<p>This is INCREDIBLE!!
The images from our function are absolutely jaw dropping.
I highly recommend to book this studio for photographies!</p>
<span class="close">”</span>
<div class="review-down-sec">
<img src="./reviews/p4.png" alt="person1">
<h2>-Mrs.DDD</h2>
</div>
</div>
<!--First box end-->
<!--Second box start-->
<div>
<span class="open">“</span>
<p> Wonderful memories all together!
Here creativity, professionalism plays a major role.
Best place to opt for continue to create the magic you do!
</p>
<span class="close">”</span>
<div class="review-down-sec">
<img src="./reviews/p5.png" alt="person2">
<h2>-Mrs.EEE </h2>
</div>
</div>
<!--Second box end-->
<!--Third box start-->
<div>
<span class="open">“</span>
<p>
The editing and professionalism is good.
The photos are extraordinary and the services are
excellent. They respect each other.
</p>
<span class="close">”</span>
<div class="review-down-sec">
<img src="./reviews/p6.png" alt="person2">
<h2>-Mrs.FFF</h2>
</div>
</div>
<!--Third box end-->
</div>
<!--Reviews part2 end-->
</div>
<br><br><br><br><br>
<a href="#" target="_blank"><button class="rev-google">See more reviews on google</button></a>
</div>
<!--Main content testimnials end-->
</body>
</html>