Upload files to "redteam"
This commit is contained in:
28
redteam/index.html
Normal file
28
redteam/index.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Red-Team Slider</title>
|
||||
<link rel="stylesheet" href="styles.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="slider-box">
|
||||
<div class="slides">
|
||||
<img src="images/frame1.jpg.png" class="slide active" alt="Frame 1" />
|
||||
<img src="images/frame2.jpg.png" class="slide" alt="Frame 2" />
|
||||
<img src="images/frame3.jpg.png" class="slide" alt="Frame 3" />
|
||||
<img src="images/frame4.jpg.png" class="slide" alt="Frame 4" />
|
||||
<img src="images/frame5.jpg.png" class="slide" alt="Frame 5" />
|
||||
<img src="images/frame6.jpg.png" class="slide" alt="Frame 6" />
|
||||
<img src="images/frame7.jpg.png" class="slide" alt="Frame 6" />
|
||||
</div>
|
||||
|
||||
<button class="nav prev" onclick="move(-1)">❮</button>
|
||||
<button class="nav next" onclick="move(1)">❯</button>
|
||||
</div>
|
||||
|
||||
<script src="slider.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user