-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (33 loc) · 947 Bytes
/
index.php
File metadata and controls
37 lines (33 loc) · 947 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
<!DOCTYPE html>
<html>
<head>
<title>
Homepage
</title>
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<?php include('include/nav.php'); ?>
</nav>
<h1 id="ini-title"><marquee id="hi">Welcome to the Tutorial Site</marquee></h1>
<div class="container">
<div class="row category">
<?php
foreach ($data["allCat"] as $value) {
?>
<div class="col-sm-3 col-xs-6">
<div class="item">
<?php echo '<a href="category.php?id='.$value['category_id'].'"" class="element"><h2>' . $value['category_name']. '</h2></a>'; ?>
</div>
</div>
<?php
}
?>
</div>
</div>
</body>
<script src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
</html>