-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdem.php
More file actions
37 lines (32 loc) · 949 Bytes
/
dem.php
File metadata and controls
37 lines (32 loc) · 949 Bytes
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
<html>
<head>
<?php include "header.php";
include "nav2.php"?>
</head>
<div id="demo" class="carousel slide" data-ride="carousel" style="margin-top:2px">
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<div class="carousel-inner">
<div class="carousel-item active">
<img src = "myimages/3_1.webp" width="100%" height=400px>
</div>
<div class="carousel-item">
<img src = "myimages/3_2.webp" width="100%" height=400px>
</div>
<div class="carousel-item">
<img src = "myimages/3_3.webp" width="100%" height=400px>
</div>
<div>
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
</div>
</html>