-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (49 loc) · 2.23 KB
/
index.html
File metadata and controls
54 lines (49 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<section id="app">
<h1>Apps</h1>
<div class="line"></div>
<iframe width="400" height="620" style="border: 0px;" src="https://studio.code.org/projects/applab/AmAIOlod-80aGvVFcBdbfjebPGUlVaYjI8ECZcJtZks/embed"></iframe>
<iframe width="400" height="620" style="border: 0px;" src="https://studio.code.org/projects/applab/U9AQsuLnTixFr5caYUBM9qmkuaPCvmuWblFMcUPrC14/embed"></iframe>
</section>
<div id = "myCarousel" class = "carousel slide" data-ride = "carousel">
<div class = "carousel-inner">
<div class = "item active">
<center>
<a href = "https://studio.code.org/projects/spritelab/7Ih-KOCey-YuOv0FLIQ0uuB9Gjm7bgkrc6UnucB7EVo" target = "_blank">
<img src = "https://studio.code.org/v3/files/7Ih-KOCey-YuOv0FLIQ0uuB9Gjm7bgkrc6UnucB7EVo/.metadata/thumbnail.png" class = "img-responsive">
</a>
<div class = "carousel-content">
<p>Car game</p>
</div>
</center>
</div>
<div class = "item">
<center>
<a href = "https://studio.code.org/projects/spritelab/KMk3flLIVCKBI3Y3aD2rukwaLqY8xm3vj0qvagavkdI" target = "_blank"><img src = "https://studio.code.org/v3/files/KMk3flLIVCKBI3Y3aD2rukwaLqY8xm3vj0qvagavkdI/.metadata/thumbnail.png" class = "img-responsive"> </a>
<div class = "carousel-content">
<p>water the watermelon</p>
</div>
</center>
</div>
</div>
<a class = "left carousel-control" href = "#myCarousel" data-slide = "prev">
<span class = "glyphicon glyphicon-chevron-left"></span>
</a>
<a class = "right carousel-control" href = "#myCarousel" data-slide = "next">
<span class = "glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
</body>
</html>