-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
45 lines (37 loc) · 1.45 KB
/
Copy pathindex.php
File metadata and controls
45 lines (37 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<title> MUlody Project </title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src='js/document_ready.js'></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
<link rel='stylesheet' href='css/carousel_style.css'>
<style>
body{ padding-top: 70px; }
</style>
</head>
<body>
<div id='HEADER'></div>
<div class='container-fluid'>
<div class='row'>
<div class='col-sm-8 mb-2'>
<?php require_once "php/LoadCarouselContent.php"; ?>
</div><!--End of Col-sm-8-->
<div class='col-sm-4'>
<div class='card'>
<h6 class='card-header'> Other things </h6>
<div class='card-body'>
<h5> blablabla </h5>
<p> blablabla </p>
<p>hahahahahahahacheow</p>
</div>
</div>
</div><!--End of Col-sm-4-->
</div><!--End of Row-->
</div><!--End of Container-fluid-->
</body>
</html>