-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Document</title>
</head>
<body>
<main>
<section class="idea-box-grid">
<h1 class="idea-box">IdeaBox</h1>
<div class="ideas">
<button class="show-starred-ideas hidden" id="toggle-ideas">Show Starred Ideas</button>
</div>
</section>
<section class="form-wrapper">
<form class="idea-box-form">
<div class="title-box">
<label class="title">Title</label>
<input type="text" class="user-title">
</div>
<div class="body-box">
<label class="body">Body</label>
<input type="text" class="user-body">
</div>
<button class="save-button" disabled>Save</button>
</form>
<section class="saved-cards">
</section>
</main>
<script src="main.js"></script>
</body>
</html>