forked from CodeMeister362/Idea-Box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<title>Idea Box!</title>
<meta charset="utf-8">
<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=Open+Sans:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<h1>IdeaBox</h1>
<section class="nav-box">
<p class="nav-title">Filter Starred Ideas</p>
<button class="show-btn js-show-btn">Show Starred Ideas</button>
<button class="show-all-btn js-show-all-btn hidden">Show All Ideas</button>
</section>
</nav>
<section class="main-container">
<section class="top-container">
<form class="js-form form">
<div class="form-divs">
<p class="input-headers">Title</p>
<input type="text" class="js-title-input title-input">
</div>
<div class="form-divs">
<p class="input-headers">Body</p>
<textarea class="js-body-input body-input"></textarea>
</div>
<div class="form-divs">
<button class="js-save save-btn" disabled>Save</button>
</div>
<div class="form-divs search-bar">
<img class="img-search" src="assests/search.svg">
<input placeholder="Search Ideas" type="text" class="input search">
</div>
</form>
</section>
<section class='js-idea-container bottom-container'>
</section>
</section>
<script type="text/javascript" src="./idea.js"></script>
<script type="text/javascript" src="./main.js"></script>
</body>
</html>