-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProduk1.html
More file actions
139 lines (114 loc) · 4.95 KB
/
Produk1.html
File metadata and controls
139 lines (114 loc) · 4.95 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Multindo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!-- css lokal -->
<link rel="stylesheet" href="Style.css">
<!-- Javascript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
<!-- AOS -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
</head>
<body>
<!--Menu-->
<section id="menu">
<div class="row bg-success">
<div class="col-2"><a href="Catalog.html" class="fs-3 text-center py-3 nav-link">Back</a></div>
</div>
</section>
<!-- Akhir menu -->
<!-- Foto -->
<section id="foto">
<div class="foto">
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="gambar/img1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="gambar/img2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="gambar/img3.jpg" class="d-block w-100" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- Akhir foto -->
<!-- Nama barang -->
<div class="row py-3 container">
<div class="col"><h1>Lorem ipsum dolor sit amet</h1></div>
</div>
<!-- Deskripsi -->
<div class="container deskripsi">
<div class="row"><h1>Deskripsi</h1></div>
<div class="row fs-5 px-5">Indramayu Fresh Mangoes is one of the popular mango plants in West Java, Indonesia. This fruit has a characteristic green skin color and also has a sweet pulp. The name of Indramayu or Harum Manis (in Bahasa) itself is taken because of the fragrant aroma of the mango fruit. <br>
Mangoes are one of the tropical fruits, commonly called as “king of fruits”. PT is the best produced and exported of mangoes in the world. The fruit is high in fiber, low in calories and contains a small amount of carbohydrates, calcium, iron, potassium and a little protein. Mangoes are also rich in vitamins A, B and C. It is considered one of the sweetest fruits in the world, mangoes come in several varieties.
</div>
<div class="row py-3">
<div class="col"><h1><center>Technical Data</center></h1></div>
</div>
<div class="row justify-content-around">
<div class="col-5 fs-5">
Denomination <br>
Scientific Name <br>
Tariff Heading <br>
Origin <br>
Cultivation Type <br>
weight <br>
Taste <br>
Seasonalit <br>
Port of Loading <br>
Packing <br>
Payment Term <br>
Processing Time <br>
Minimum Order Quantity <br>
</div>
<div class="col-5 fs-5">
: Denomination <br>
: Scientific Name <br>
: Tariff Heading <br>
: Origin <br>
: Cultivation Type <br>
: weight <br>
: Taste <br>
: Seasonalit <br>
: Port of Loading <br>
: Packing <br>
: Payment Term <br>
: Processing Time <br>
: Minimum Order Quantity <br>
</div>
</div>
</div>
<!-- Tombol pesan -->
<div class="container">
<div class="row">
<div class="col text-end py-3 fixed-bottom"><a href=""class="btn btn-success my-3 ">Pesan via WhatssApp</a></div>
</div>
</div>
<footer class="py-3 ">
<p class="fs-5 text-center">Made With @Azzam</p>
</footer>
<!-- AOS -->
<script>
AOS.init({
once: true,
duration:900
});
</script>
</body>
</html>