-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite.html
More file actions
42 lines (39 loc) · 1.32 KB
/
website.html
File metadata and controls
42 lines (39 loc) · 1.32 KB
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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTFF-8">
<title>Page Title</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
.background {
background-color: red;
/* color: black; */
width: 100%;
height: 500px;
}
.position {
position: absolute;
top: 10%;
text-align: center;
}
</style>
<script src="https://www.w3schools.com/lib/w3.js"></script>
<body>
<div id="comment" class="background">
<h5>Jennifer Peters</h5>
<p>Initially it was just about keeping funds aside for a new car! Now i <br>
got the car and i have set a new target. Once i hit that, i will sure <br>
move on to the next. Glad to be a Mecurian.
</p>
</div>
<div id="comment" class="background">
<h5>Oludare David</h5>
<p>I will definitely recommend mecury to my family and friends. They're <br>
100% reliable and fast. Good customer servce and wow, the interests!
</p>
</div>
<script>
w3.slideshow("#comment", 3000);
</script>
</body>
</html>