-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.php
More file actions
44 lines (44 loc) · 995 Bytes
/
layout.php
File metadata and controls
44 lines (44 loc) · 995 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
38
39
40
41
42
43
44
<?php
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>The Layout</title>
<link rel="stylesheet" type="text/css" href="layout.css">
</head>
<body class="body">
<div class="continer">
<header class="header">
<h2>This is my store website</h2>
</header>
<nav class="nav">
<ul>
<li><a href="index.php">HOME</a></li>
<li><a href="signup.php">SIGN UP</a></li>
<li><a href="product.php">Products</a></li>
<li><a href="cart.php">Carts</a></li>
</ul>
</nav>
<div class="content">
<aside class="sidebar">
<ul>
<li><a href="">HOME</a></li>
<li><a href="">SIGN UP</a></li>
<li><a href="">Products</a></li>
<li><a href="">Carts</a></li>
</ul>
</aside>
<div class="main">
<h1>This is the main</h1>
<h2>Here will be a list of products</h2>
<h1>This is the main</h1>
<h2>Here will be a list of products</h2>
</div>
</div>
<footer class="footer">
<h4>CopyRights</h4>
</footer>
</div>
</body>
</html>