forked from Addyk16/Hack2U
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
31 lines (31 loc) · 959 Bytes
/
profile.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
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TrashCash-Profile</title>
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="responsive.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div class="container">
<div class="header-left">
<a href="index_2.html">
<h3 class="logo">Trash Cash</h3>
</a>
</div>
<div class="header-icon">
<span class="fa fa-bars menu-icon"></span>
</div>
<div class="header-right">
<a href="about.html">About Us</a>
<a href="points.html">Points</a>
<a href="pickup.html">Pickup</a>
<a href="login.html" class="login">Profile</a>
</div>
</div>
</header>
</body>
</html>