-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.html
More file actions
44 lines (28 loc) · 1.15 KB
/
Copy pathProject.html
File metadata and controls
44 lines (28 loc) · 1.15 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
<!DOCTYPE html>
<html >
<head>
<title>Project Manager</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Nanum+Gothic:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- As a heading -->
<nav class="navbar bg-light ">
<div class="container-fluid">
<span class="navbar-brand mb-0 h1">Dashboard</span>
</div>
</nav>
<div class="generator">
<input type="text" name="" value="" id="Title" placeholder="Enter the Title">
<button type="button" class="btn btn-dark" id="addlist" onclick="addlist()">Add List</button>
</div>
<div class="container" id="contain">
</div>
<script src="function.js">
</script>
</body>
</html>