-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_header.php
executable file
·37 lines (32 loc) · 1.62 KB
/
template_header.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
<div id="pageHeader"><table width="100%" border="0" cellspacing="0" cellpadding="12">
<tr>
<td width="32%"><a href="http://localhost/Webucator/ClassFiles/MyOnlineStore2/index.php"><img src="http://localhost/Webucator/ClassFiles/MyOnlineStore2/style/logo.png" alt="" width="700" height="200" align="middle"/></td>
</tr>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.7.0/css/all.css' integrity='sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ' crossorigin='anonymous'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
.btn {
background-color: red;
border: none;
color: grey;
padding: 12px 16px;
font-size: 18px;
cursor: pointer;
}
/* Darker background on mouse-over */
.btn:hover {
background-color: yellow;
}
</style>
<tr>
<td colspan="2">
<a href="http://localhost/Webucator/ClassFiles/MyOnlineStore2/index.php" class="btn"><i class="fa fa-home"></i>Home</a>
<a href="http://localhost/Webucator/ClassFiles/MyOnlineStore2/cart.php" class="btn"><i class='fas fa-cart-plus'></i>My Cart</a>
<a href="http://localhost/Webucator/ClassFiles/MyOnlineStore2/product_list.php" class="btn"><i class="fa fa-bars"></i>Products</a>
<a href="http://localhost/Webucator/ClassFiles/MyOnlineStore2/help.php" class="btn"><i class="material-icons">help_outline</i>Help</a>
<a href="http://localhost/Webucator/ClassFiles/MyOnlineStore2/contact.php" class="btn"><i class="fa fa-phone"></i>Contact Us</a>
</td>
</tr>
</table>
</div>