-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
25 lines (24 loc) · 1.16 KB
/
cart.html
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
<!DOCTYPE html>
<html>
<head>
<title>Snowfish - Cart</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" type="text/css" href="resources/css/all.min.css"/> <!-- Link icon list -->
<link rel="stylesheet" type="text/css" href="resources/css/stylesheet.css"/> <!-- Link external css -->
<link rel="icon" type="image/png" href="resources/images/logo_gray.png"/> <!-- Title icon -->
<link rel="apple-touch-icon" type="image/png" href="resources/images/logo_gray.png"/> <!-- Title icon for apple devices -->
</head>
<body>
<nav id="topnav">
<a href="index.html"><img src="resources/images/logo_white.png" height="27" width="27"></a>
<a href="customizer.html">Customizer</a>
<a href="portfolio.html">Portfolio</a>
<a href="about.html">About</a>
<a href="support.html">Support</a>
<a href="cart.html" class="carttxt">Shopping cart</a>
<a href="cart.html" class="carticon"><i class="fas fa-shopping-cart"></i></a>
<a href="javascript:void(0);" class="navicon" onclick="foldingMenu()"><i class="fa fa-bars"></i></a>
</nav>
<script type="text/javascript" src="resources/js/main.js"></script> <!-- Link external javascript -->
</body>
</html>