-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
89 lines (78 loc) · 4.36 KB
/
products.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
<!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">
<link href="./style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>BookShop | Ürünlerimiz</title>
<script src="js/slider-min.js" type="text/javascript">
</script>
</head>
<body>
<header class="row">
<div class="col-3 ml-auto mt-4 mb-4 header-logo">
<a href="">BOOK SHOP</a>
</div>
<div class="col-7 mt-4 header-links">
<a href="index.html">Anasayfa</a>
<a href="about-us.html">Hakkımızda</a>
<a href="products.html">Ürünlerimiz</a>
<a href="contact.html">İletişim</a>
</div>
</header>
<main class="container">
<div class="row mt-2">
<section class="col-sm-12">
<article class="row">
<div class="col-12 w-100 page-img">
<h3>ÜRÜNLERİMİZ</h3>
</div>
</article>
<article class="row">
<div class="col-sm-4 mt-3 mb-3 card">
<img class="card-img-top" src="https://picsum.photos/id/4/350/350" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Lorem, ipsum.</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="col-sm-4 mt-3 mb-3 card">
<img class="card-img-top" src="https://picsum.photos/id/5/350/350" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Dicta, labore.</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="col-sm-4 mt-3 mb-3 card">
<img class="card-img-top" src="https://picsum.photos/id/11/350/350" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Officia, labore.</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="col-sm-4 mt-3 mb-3 card">
<img class="card-img-top" src="https://picsum.photos/id/17/350/350" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Animi, quidem.</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="col-sm-4 mt-3 mb-3 card">
<img class="card-img-top" src="https://picsum.photos/id/28/350/350" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Corrupti, laborum?</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</article>
</section>
</div>
</main>
</body>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</html>