-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (45 loc) · 1.8 KB
/
index.html
File metadata and controls
51 lines (45 loc) · 1.8 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
43
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="en">
<head>
<meta name="author" content="yenilikci">
<meta name="url" content="https://github.com/yenilikci/JavaScript-Slider">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<!--Font Awesome-->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
<style>
.fas{
cursor: pointer;
}
</style>
<title>JavaScript - Slider</title>
</head>
<body>
<div class="container mt-2">
<div class="row">
<div class="col-md-6">
<div class="card">
<img class="card-img-top" src="img/audi.jpg" alt="">
<div class="card-body">
<h5 class="card-title">Audi</h5>
<p class="card-text"></p>
<a class="card-link" href="#">Daha Fazla</a>
</div>
<div class="card-footer">
<i class="fas fa-arrow-circle-left fa-3x arrow"></i>
<i class="fas fa-arrow-circle-right fa-3x arrow"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" ></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</body>
</html>