-
Notifications
You must be signed in to change notification settings - Fork 0
/
website-list.html
executable file
·41 lines (40 loc) · 1.79 KB
/
website-list.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
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<title>Websites</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="assignmentStyle.css">
</head>
<body>
<div class="container-fluid">
<div class="navbar-brand navbar-header topBar band fulldiv">
<a href="profile.html">
<span class="glyphicon glyphicon-chevron-left band"></span></a>
Websites<ul class="pull-right band">
<a href="website-new.html"><span class="glyphicon glyphicon-plus band">
</span></a></ul>
</div>
<div class="myLists">
<ul class="list-group">
<li class="list-group-item">Example 1
<a href="website-edit.html">
<span class="glyphicon glyphicon-cog pull-right">
</span></a></li></ul>
<ul class="list-group">
<li class="list-group-item">Example 2
<a href="website-edit.html">
<span class="glyphicon glyphicon-cog pull-right">
</span></a></li></ul>
</div>
<div class ="navbar-brand navbar-footer bottomBar band fulldiv">
<u1 class="pull-right band">
<a href="profile.html">
<span class="glyphicon glyphicon-user band"></span></a></u1>
</div>
</div>
</body>
</html>