Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
redspy-sec authored Nov 24, 2023
1 parent 9534f1d commit ec33b9a
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>3D Cube Slider</title>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="image-cube">
<div class="front">
<img src="https://github.com/redspy-sec/web-cube/blob/8a62b83aaa672153b82a8b45d4ab019d23fdc1d8/IMG_20230718_081357_600.jpg" />
</div>
<div class="right">
<img src="https://github.com/redspy-sec/web-cube/blob/8a62b83aaa672153b82a8b45d4ab019d23fdc1d8/IMG_20230724_083705_434.jpg" />
</div>
<div class="back">
<img src="https://github.com/redspy-sec/web-cube/blob/8a62b83aaa672153b82a8b45d4ab019d23fdc1d8/IMG_20230724_085227_609.jpg" />
</div>
<div class="left">
<img src="https://github.com/redspy-sec/web-cube/blob/8a62b83aaa672153b82a8b45d4ab019d23fdc1d8/IMG_20230724_085227_764.jpg" />
</div>
</div>
</div>
<div class="btns">
<button id="prev">
<i class="fas fa-arrow-left"></i>
</button>
<button id="next">
<i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>Enter

0 comments on commit ec33b9a

Please sign in to comment.