-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (44 loc) · 1.58 KB
/
index.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
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ProjectPulse</title>
<link rel="icon" href="assets/images/favicon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/index.css">
</head>
<body>
<!-- Main Container -->
<!-- Application Title and Description -->
<header>
<h1>projectPulse</h1>
</header>
<main>
<div>
<h1>Welcome to projectPulse</h1>
<p class="lead">A simple app to manage and track your coding projects.</p>
</div>
<div id="emptyDiv">
<p><strong>Click below to start tracking your first project.</strong></p>
<button class="btn btn-primary" id="createProject">Create Project</button>
</div>
<div id="projectDiv" class="d-none">
<h3><u>Featured Project</u></h3>
<a href="project.html">
<h2 id="name"></h2>
</a>
<p id="description"></p>
</div>
</main>
<footer>
<h6>Created by the Lucky13's</h6>
</footer>
<!-- Bootstrap Javascript -->
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/logic.js"></script>
<script src="assets/js/index.js"></script>
</body>
</html>