-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboards.html
50 lines (43 loc) · 1.11 KB
/
boards.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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title><%= title %> </title>
<link rel="stylesheet" type="text/css" href="style2.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<ul class="nav">
<li>My Account</li>
<li class="hover-list">
Boards
<div class="nav-board-list">
<h2>Personal Boards</h2>
<ul>
<li>API</li>
<li>Google</li>
<li>Facebook</li>
<li>Amazon</li>
</ul>
<p>Add New Board</p>
</div>
</li>
<li>Home</li>
<li id='navbar-logo'>Prello</li>
<li class='sign-out clickable'>Sign Out</li>
<li class="menu clickable">
Menu
</li>
</ul>
<div class="board-list">
<h3>Personal Boards</h3>
<ul>
<li>API</li>
<li>Google</li>
<li>Facebook</li>
<li>Amazon</li>
<li>Amazon</li>
</ul>
<button>Add Board</button>
</div>
</body>
</html>