-
Notifications
You must be signed in to change notification settings - Fork 160
/
customers.html
89 lines (77 loc) · 2.29 KB
/
customers.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Customer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
header {
background-color: #007bff;
color: #fff;
padding: 20px;
text-align: center;
}
main {
padding: 20px;
max-width: 800px;
margin: 0 auto;
}
.testimonial {
background-color: #fff;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.testimonial p {
font-size: 16px;
color: #333;
}
.testimonial .author {
font-weight: bold;
margin-top: 10px;
}
.testimonial .company {
font-style: italic;
color: #666;
}
.separator {
border-top: 1px solid #ddd;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Customer</h1>
<p>This page provides information about our company's customers, testimonials, case studies, or success stories.</p>
</header>
<main>
<div class="testimonial">
<p>"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit, justo a lacinia malesuada."</p>
<p class="author">John Doe</p>
<p class="company">ABC Company</p>
</div>
<div class="testimonial">
<p>"Nullam ac felis vel lorem blandit vestibulum. Fusce dapibus, neque vitae euismod consequat."</p>
<p class="author">Jane Smith</p>
<p class="company">XYZ Corporation</p>
</div>
<!-- Add more testimonials or case studies here -->
<div class="separator"></div>
<h2>Case Studies</h2>
<p>Here are some case studies highlighting successful projects or partnerships:</p>
<ul>
<li>Case Study 1</li>
<li>Case Study 2</li>
<!-- Add more case studies here -->
</ul>
</main>
</body>
</html>