-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (82 loc) · 2.53 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fatih's Kitten Carousel Project</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
body {
max-width: 600px;
margin: auto;
}
div {
margin-top: 100px;
margin-bottom: 50px;
margin-right: auto;
margin-left: auto;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
.footnote {
color: rgba(0, 0, 255, 0.712);
}
.carousel {
height: 600px;
background-color: lightgreen;
}
</style>
</head>
<body>
<div>
<img
src="https://clarusway.com/wp-content/uploads/2022/12/clarusway-logo-black.png"
width="50%"
/>
</div>
<h2>Project: Fatih Aktas's Kittens Carousel</h2>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="./cat0.jpg" alt="Cuties First" />
</div>
<div class="item">
<img src="./cat1.jpg" alt="Cuties Second" />
</div>
<div class="item">
<img src="./cat2.jpg" alt="Cuties Third" />
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
<p class="footnote">
<i
>This static website is deployed by <b> Fatih Aktas </b> on AWS EC2
Instance using AWS Clouldformation Service.</i
>
</p>
</body>
</html>