-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
55 lines (45 loc) · 1.73 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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>The Sama Care Web Application</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!--Carousel-->
<div class ="funny-text">
<h1> OUR SERVICES </h1>
<h3>Hire professionals,</h3>
<h3>Trained specifically for your needs</h3>
<h3 class = "OPP">Sama Care Offers Completely Certified Workers With Unimited Replacacement Policy </h3>
</div>
<div class="slideshow-container">
<div class="mySlides fade">
<img src="assets/homebabysitter.png" style="width:100%">
<div class="text">homebabysitter</div>
</div>
<div class="mySlides fade">
<img src="assets/homecleaning.png" style="width:100%">
<div class="text">homecleaning</div>
</div>
<div class="mySlides fade">
<img src="assets/homecook.png" style="width:100%">
<div class="text">homecook</div>
</div>
<div class="mySlides fade">
<img src="assets/homeelderly.png" style="width:100%">
<div class="text">homeelderly</div>
</div>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
<span class="dot" onclick="currentSlide(4)"></span>
</div>
<script src="script.js"></script>
</body>
</html>