-
Notifications
You must be signed in to change notification settings - Fork 3
/
electronics.php
40 lines (36 loc) · 1.13 KB
/
electronics.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Electronics</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100" >
<link rel="stylesheet" href="styles/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<!--HEADLINE -->
<?php include "includes/header.php" ?>
<div id="content">
<div class="container">
<?php include "includes/sidebar.php" ?>
<div class="col-md-9">
<!-- WELCOME STRIP-->
<div class="row">
<div class="box">
<h1>Electronics</h1>
<p>
Electronic appliances and parts
</p>
</div>
</div>
<!-- ITEMS-->
<div class="row">
<div class="box">
<?php include "controllers/electronics.controller.php" ?>
</div>
</div>
</div>
</div>
</div>
</html>