-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (33 loc) · 1.82 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description"
content="Showcase customer testimonials with this JavaScript Testimonial Slider, a simple app for rotating feedback." />
<meta name="keywords"
content="testimonial slider, JavaScript slider, feedback slider, basic slider project, customer testimonials" />
<meta property="og:title" content="Testimonial Slider" />
<meta property="og:description"
content="Showcase customer testimonials with this JavaScript Testimonial Slider, a simple app for rotating feedback." />
<meta property="og:image" content="https://coderespite.com/image/js-projects/testimonial-slider.png" />
<meta property="og:url" content="https://coderespite.com/projects/js-projects/testimonial-slider" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Testimonial Slider" />
<meta name="twitter:description"
content="Showcase customer testimonials with this JavaScript Testimonial Slider, a simple app for rotating feedback." />
<meta name="twitter:image" content="https://coderespite.com/image/js-projects/testimonial-slider.png" />
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>testimonial slider</title>
</head>
<body>
<main>
<img src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=880&q=80"
alt="user-image" id="image">
<p id="testimonial">It is really good, I am really surprised how you can do this better, I never thought this
could happen.</p>
<h4 id="name">amit</h4>
</main>
<script src="script.js"></script>
</body>
</html>