-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunction_page_final.html
More file actions
77 lines (65 loc) · 2.18 KB
/
function_page_final.html
File metadata and controls
77 lines (65 loc) · 2.18 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>First Project</title>
<link rel="stylesheet" href="./styles/function_page_final.css">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
</head>
<body>
<div class="head">
<div class="left">
<i class="fa fa-envelope"></i>
<i onclick="go_to_home_page()" class="fa fa-home fa-fw"></i>
</div>
<div class="mid">
<img src="https://i.ibb.co/RQhW0Jy/20221108-224623.png" alt="">
</div>
<div class="right">
<input type="text" placeholder="Search">
<i class="fa fa-plus"></i>
<i class="fa fa-circle"></i>
<i class="fa fa-question"></i>
</div>
<div id="login">
</div>
</div>
<input type="checkbox" id="sidemenu">
<label for="sidemenu" class="icon">
<div class="spin"></div>
<div class="spin mid"></div>
<div class="spin bot"></div>
</label>
<div id="sidebar">
<ul class="menu">
<li><a href="#">Personal</a></li>
<li id="space"><a href="#">First space</a></li>
<li><a href="#">Invite</a></li>
<li><a href="#">Explore spaces</a></li>
<li><a href="#">Shared with me</a></li>
<li><a href="#">Blueprints</a></li>
<li><a href="#">Recycle bin</a></li>
</ul>
</div>
<div id="container">
<button onclick="sorting()" id="sorting">Sort by Name</button>
<table>
<thead>
<tr>
<th>Name</th>
<th>Task 1</th>
<th>Task 2</th>
<th>Task 3</th>
<th>Remove Task</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</body>
</html>
<script src="./scripts/function_page_final.js"></script>